Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 536 Bytes

File metadata and controls

37 lines (23 loc) · 536 Bytes

FutureMsg

Send msgs to the future

Build Setup

# 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