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

1.0 KiB

Nest Logo

Description

IISA Backend application Using Nest framework.

Project setup

Install packages

$ npm install 

Generate Prisma files

$ npx prisma generate reset

Project requires postgreSQL service.

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