Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 584 Bytes

File metadata and controls

35 lines (23 loc) · 584 Bytes
 

ExpressJs With MongoDb

🏁 Starting

# Clone this project
$ git clone https://github.com/Faisd405/Express-With-MongoDb.git

# Access
$ cd Express-With-MongoDb

# Install dependencies
$ npm install

# Copy .env.example to .env
$ cp .env.example .env

# Edit MongoDb Setting in .env

# Migrate Collection to Database
$ npm run migrate

# Run the project
$ npm run start

# The server will initialize in the <http://localhost:3000>

Back to top