-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
31 lines (28 loc) · 898 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ----------------
# PLEASE READ
# ----------------
# This file is an example of the .env file that is needed in order for certain
# features of this application to function properly. Use this file as a template
# to create your own .env file. The application will not read the .env.example file.
# Application Settings
NODE_ENV=development
PORT=3000
JWT_SECRET=klhjoughwgnjvlksmjghifeyughurwpue8436tygpo
REDIS_PORT=6379
REDIS_HOST=127.0.0.1
# Database connnection
TYPEORM_CONNECTION=postgres
TYPEORM_HOST=localhost
TYPEORM_USERNAME=postgres
TYPEORM_PASSWORD=postgres
TYPEORM_DATABASE=poly
TYPEORM_PORT=5432
# true/false leave empty for false
TYPEORM_SYNCHRONIZE=
# true/false leave empty for false
TYPEORM_MIGRATIONS_RUN=true
# true/false leave empty for false
TYPEORM_LOGGING=
TYPEORM_ENTITIES=dist/**/*.entity.js
TYPEORM_MIGRATIONS=dist/migration/**/*.js
TYPEORM_MIGRATIONS_DIR=src/migration