-
Make sure mongo DB is runnining
sudo mongod -
Update the line in
server/server.jsto use your DB of choicemongoose.connect('mongodb://localhost/__YOUR_DB__') -
Install Client packages
npm run install:client -
Install Server packages
npm run install:server
Tip
You can run both the previous steps in one command:
npm run install:client && npm run install:server
-
Start Client
npm run start:client -
Start Server
npm run start:server
Browser is loaded at localhost:3000 and server api is located at localhost:3001