-
Notifications
You must be signed in to change notification settings - Fork 3
/
env.sample
32 lines (29 loc) · 1.02 KB
/
env.sample
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
## Swagger UI
## Currently Pyramid OpenAPI3 does not support python 3.12, which will raise error.
## This issue can be overcome by disabling Swagger UI.
## SHOW_SWAGGER_UI accepts `true` or `false` as values.
SHOW_SWAGGER_UI=
## Database variables
## postgresql+psycopg2://user:password@host:port/dbname[?key=value&key=value...]
## https://docs.sqlalchemy.org/en/13/dialects/postgresql.html#module-sqlalchemy.dialects.postgresql.psycopg2
## The entire database URL
## If GKCORE_DB_URL is given, it will be given precedence over other configuration
GKCORE_DB_URL=
## Database name
GKCORE_DB_NAME=
## Database username
GKCORE_DB_USER=
## Database user password
GKCORE_DB_PASSWORD=
## Database host
GKCORE_DB_HOST=
## Database port
GKCORE_DB_PORT=
## Unix Domain Connection Path
## If unix socket path is given, it will have precedence over GKCORE_DB_HOST and
## GKCORE_DB_PORT variables.
UNIX_SOCKET_PATH=
## Docker database host port
## This will be useful if default port of postgres, 5432 is already used in the host
## system.
DB_HOST_PORT=