Send msgs to the future
# build for first time use
# Install dependencies of app
$ npm install
# Change to server directory
$ cd server
# install dependencies of server
$ npm install
# Go back to App
$ cd ..
## Start up the system
# N.B Make sure you open three instances of the terminal and run each command on a different one.
# Start MONGODB
$ npm run mongo
# Start the server
$ npm run server
# Start the app
$ npm run dev
This supports hot reload for both the Server and App