Real Estate Backend API
Description
Backend API for the Real Estate application built with NestJS, TypeORM, and PostgreSQL.
Installation
$ npm install
Configuration
- Copy
.env.exampleto.env - Update the environment variables in
.envwith your values
Running the app
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
API Documentation
Once the application is running, you can access the Swagger API documentation at: http://localhost:3000/api
Test
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov