- cd client
- npm install
- npm start (dev server)
- npm test (frontend tests)
- npm build (bundle source and send to ../server/client)
client/.env file (not version controlled): <--- Will be changing as pipeline matures
REACT_APP_DEV_SERVER=localhost:3001
REACT_APP_PROD_SERVER=localhost:3001
REACT_APP_TEST_SERVER=localhost:3001
- cd server
- npm install
- npm start (Dev server, connecting to localhost mongodb)
- npm test (backend tests)
- npm deploy (Production server, connecting to deployment mongodb)