Backend and frontend are in diferent folders and need to be started separately
runing in node 12.20.0 nvm can ve used to set node version
in dev mode with nodemon in the port define by PORT env variable
npm run dev
tests were writen in jest
to run all tests
npm run test
to run all tests in watch mode
npm run test:watch
to reinitialize the database with seed data
npm run refresh
Conection to dabase is set to read enviroment variables, .env file es required on root of backend folder the .env.sample file is left with a connection to a database in elephantSQL
Documentation for all endpoints in Postman colection
runing in node 12.18.3 nvm can ve used to set node version you can add a new task and mark a task as done, you can also select a user to view their tasks and a table is displayed with a summary of all users
in dev mode with on port 3000
npm start
tests were writen in jest
to run all tests
npm run test