Backend built using Nest, Typescript and SQL.
Has swagger built in for documentation.
Hosted on render, for docs: https://nestbank-finance.onrender.com/docs
Install deps
$ yarn
Copy .env
$ cp .env.example .env
Run database
docker compose up -d database
Run app
yarn start
Then go to http://localhost:8000/docs for swagger
# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prod
# unit tests
$ yarn run test
# e2e test
$ yarn run test:e2e