- Clone this repository to your local machine.
- Create a
.env.development
file in the project root and set the database name:PGDATABASE=your_development_database_name
. - Create a
.env.test
file in the project root and set the test database name:PGDATABASE=your_test_database_name
. - Run
npm install
to install project dependencies. - Run the database setup scripts:
npm run setup-dbs
. - Start the server:
npm start
.
The API should now be accessible at localhost:9090
.