MONGO DB (Database)
-
Download mongodb/brew: brew tap mongodb/brew
-
Install mongodb: brew install [email protected]
-
Keep mongodb running in the background: brew services start [email protected]
Any issues? See documentation: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/
-
NPM Install (bundle in client) cd client > npm install
-
NPM Install (bundle in server) cd server > npm install
-
Install nodemon globally (type command from anywhere) npm install --global nodemon
-
Run server (starts express) cd server > nodemon index.js
-
Run client (starts react) cd client > npm start