To ensure you have the required dependencies installed, run:
npm install
Be sure to create a .env
file in the root directory with the configuration outlined in .env.example
, NEVER check the .env
file into GitHub.
To format the code, run:
npm run format
To unit test the code, run:
npm run test
To start (run) the API and handle requests in production, run:
npm start
To start (run) the API and handle requests in development (with logging), run:
npm run dev