Backend part of the Purrello project which includes CRUD operations, authentication using JWT, pagination and etc.
Live demo only for testing!
$ yarn install
Copy the example env file and make the required configuration changes in the .env file
For example:
$ cp env.example .env
Run migrations first:
$ yarn migration:run
And seeds (optionally):
$ yarn seed:run
After:
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod