First, install dependencies for both node projects.
cd frontend/
npm install
cd ../backend/
npm install
Then, make sure you have Mongo running and add to a .env
file the variable DATABASE_URL
containing the url of your mongodb.
echo DATABASE_URL=... > .env
source .env
Run both server using npm start