-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (31 loc) · 942 Bytes
/
.env.example
File metadata and controls
35 lines (31 loc) · 942 Bytes
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
DEBUG= # True or False
ADMIN_URL=
ALLOWED_HOSTS= # coma separated
CSRF_TRUSTED_ORIGINS= # coma separated
CSRF_COOKIE_SECURE=
DEV_MODE= # True or False
SESSION_COOKIE_SECURE=
SECRET_KEY=
DB_NAME=
DB_USER=
DB_PASSWORD=
DB_HOST=
DB_PORT=
OIDC_OP_AUTHORIZATION_ENDPOINT=
OIDC_OP_TOKEN_ENDPOINT=
OIDC_OP_USER_ENDPOINT=
OIDC_OP_JWKS_ENDPOINT=
OIDC_RP_CLIENT_ID=
OIDC_RP_CLIENT_SECRET=
OIDC_RP_SIGN_ALGO= # example: RS256
OIDC_RP_SCOPES= # example: openid email profile
OIDC_SUPERUSER_GROUP= # OIDC group giving Django staff+superuser
OIDC_EDITOR_GROUP= # OIDC group granting staff + editor Django group
OIDC_EDITOR_DJANGO_GROUP= # Django group name (example: Editeur BDE)
# Logging / debugging
DJANGO_LOG_LEVEL= # example: DEBUG, INFO, WARNING, ERROR
OIDC_LOG_LEVEL= # example: DEBUG, INFO
GUNICORN_LOG_LEVEL= # example: debug, info, warning, error
GUNICORN_WORKERS= # example: 2
GUNICORN_THREADS= # example: 2
GUNICORN_TIMEOUT= # example: 120