-
Run mongodb:
sudo service mongod start
can check that it's running correctly withgrep "waiting for" /var/log/mongodb/mongod.log
-
Run server:
env CSRF_SECRET='foo' nodemon server/server.js
. -
Build and watch frontend:
npm run watch
.
Required env variables: CSRF_SECRET
, DB_URL
-
Build frontend:
npm run build
. -
Run server:
npm run start
.