This repo should server as a starting point for the application API.
To get the environment up and running, install the dependencies with npm install
.
Next, make sure to create a .env
file from the .env.template
file by running:
cp .env.template .env
And modify any of the necessary environment variables.
Then (as long as PostgreSQL is running on your machine) create the db and tables by running:
psql -f task-setup.sql
Finally, start up the application with npm start
.