-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
34 lines (32 loc) · 923 Bytes
/
.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
# Template Configuration
# logs config
# where logs storage, example: /logs/api.log
LOG_PATH=
# example: INFO | DEBUG | WARNING | ERROR | CRITICAL
LOG_LEVEL=
# query result limit, example: 1000
MAX_QUERY_LIMIT=
# database config
# example: http://example.com:5432
POSTGRES_HOST=
# Integer value, example: 5432
POSTGRES_PORT=
# database name, example: pg
POSTGRES_DATABASE=pg
# example: postgres
POSTGRES_USER=
# example: postgres
POSTGRES_PASSWORD=
# redis config
# The redis host of the application(only domain/ip, do not support ipv6 address), example: 127.0.0.1
REDIS_HOST=
# The redis port of the application, default is 6379
REDIS_PORT=6379
# The redis db of the application, default is 0, example: 0-15
REDIS_DB=0
# The redis username of the application, default is empty
REDIS_USER=
# The redis password of the application, default is empty
REDIS_PASSWORD=
# The max connections of the redis
REDIS_MAX_CONNECTIONS=