https://github.com/amamov/teaching-typeorm-in-the-nest
https://github.com/amamov/teaching-typeorm-in-the-nest
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amamov/teaching-typeorm-in-the-nest
- Owner: amamov
- Created: 2021-11-05T08:29:56.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-25T05:58:35.000Z (over 3 years ago)
- Last Synced: 2025-03-29T08:11:44.747Z (6 months ago)
- Language: TypeScript
- Size: 217 KB
- Stars: 11
- Watchers: 2
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# TypeORM In The Nest
## 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=...
```