-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
49 lines (45 loc) · 1.84 KB
/
.env.example
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#############################################
# Base environment variables #
# NODE_ENV: [production, development, test] #
# HOST: 0.0.0.0 #
#############################################
NODE_ENV=development
PORT=3000
HOST=localhost
#############################################
# Postgres environment variables #
#############################################
DATABASE_TYPE=postgres
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=111
DATABASE_NAME=auth
DATABASE_SYNCHRONIZE=false
DATABASE_MAX_CONNECTIONS=100
DATABASE_SSL_ENABLED=false
DATABASE_REJECT_UNAUTHORIZED=false
DATABASE_CA=
DATABASE_KEY=
DATABASE_CERT=
#################################
# Redis environment variables #
#################################
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DATABASE=1
#################################################################################
# Throttle configuration. #
# THROTTLE_TTL: the number of seconds that each request will last in storage. #
# THROTTLE_LIMIT: the maximum number of requests within the TTL limit #
#################################################################################
THROTTLE_TTL=60
THROTTLE_LIMIT=10
#########################################################################################
# Logger configuration. #
# LOG_LEVEL: [error, warn, log, debug, verbose] #
# LOG_FILE: the log file name or path with file name. Example: './logs/fileName.log'. #
# LOG_FILE: Only for production environment #
#########################################################################################
LOG_LEVEL=debug
LOG_FILE=info.log