Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 659 Bytes

README.md

File metadata and controls

53 lines (38 loc) · 659 Bytes

Description

Backend built using Nest, Typescript and SQL.

Has swagger built in for documentation.

Hosted on render, for docs: https://nestbank-finance.onrender.com/docs

Installation

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

Running the app

# development
$ yarn run start

# watch mode
$ yarn run start:dev

# production mode
$ yarn run start:prod

Test

# unit tests
$ yarn run test

# e2e test
$ yarn run test:e2e