ToDo: Elevator pitch.
- Clone the repository.
- Fetch the dependencies with
$ npm install
or$ yarn
. - Create a PostgreSQL database and update the config file.
- Run the migrations with
$ npm run migrate:latest
. - Start the server with
$ npm run dev
to watch for file changes during development.
- Place unit tests in tests/unit and end to end tests in tests/e2e
$ npm test
runs all tests$ npm run e2e-tests
runs end to end tests$ npm run unit-tests
runs unit tests$ npm run tdd
runs unit tests in watch mode
ToDo