Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/amamov/typeorm-in-the-nest

TypeORM In The Nest, Jest (Unit Testing, E2E Testing), Passport, Docker Boilerplate
https://github.com/amamov/typeorm-in-the-nest

backend docker jest nestjs postgres rest-api typeorm

Last synced: 2 days ago
JSON representation

TypeORM In The Nest, Jest (Unit Testing, E2E Testing), Passport, Docker Boilerplate

Awesome Lists containing this project

README

        

# TypeORM In The Nest

> NestJS, TypeORM, Jest, Passport boilerplate

## Config .env

```.env
# app
NODE_ENV=development
PORT=5000
ADMIN_USER=...
ADMIN_PASSWORD=...
SECRET_KEY=...
DB_USERNAME=...
DB_PASSWORD=...
DB_HOST=localhost
DB_PORT=5433
DB_NAME=...

# db
POSTGRES_DB=...
POSTGRES_USER=...
POSTGRES_PASSWORD=...

# db admin
PGADMIN_DEFAULT_EMAIL=...
PGADMIN_DEFAULT_PASSWORD=...
```