Files
IISA/README.md
2025-08-28 18:15:15 +03:00

1.0 KiB

Nest Logo

Description

IISA Backend application Using Nest framework. Project requires postgreSQL service. Project is tested on node:22.18.

Project setup

Install packages

$ npm install 

Generate Prisma files

$ npx prisma generate reset

Create .env file in root of the project, example:

DATABASE_URL="postgresql://postgres:postgres@localhost:5432/iisa"
HOST_URL="http://localhost:3000"

Apply Prisma db migrations

$ npx prisma migrate reset

Compile and run the project

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Swagger

Navigate http://localhost:3000/api to access swagger api documentation