- git clone the project
- run npm install in each of the frontend and backend folders
- make a database
- psql
- create database war_app
- create user war with password '123'
- grant all privileges on database war_app to war;
-
run migrations - npx sequelize db:migrate
-
(optional) run seed - npx sequelize db:seed:all
-
run npm start in each of the frontend and backend folders
-
to run a frontend test, use npm test