-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy path.env.example
More file actions
58 lines (52 loc) · 1.43 KB
/
.env.example
File metadata and controls
58 lines (52 loc) · 1.43 KB
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
50
51
52
53
54
55
56
57
58
SECRET_KEY=
DEBUG=False
HOST_PROTO=http
# HOST_URL and ALLOWED_HOSTS: use 0.0.0.0 for Docker
HOST_URL=localhost
ALLOWED_HOSTS=localhost,127.0.0.1
HOST_PORT=8000
CONTAINER_PORT=$HOST_PORT
SITE_NAME="Sites Conformes"
MEDIA_ROOT=medias
# USE_DOCKER: Set 1 to use Docker
USE_DOCKER=0
# USE_UV: Set 1 to use uv
USE_UV=0
# SF_USE_WHITENOISE: Set 1 or True to use Whitenoise
SF_USE_WHITENOISE=0
DATABASE_NAME=djdb
DATABASE_USER=dju
DATABASE_PASSWORD=djpwd
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_URL=postgres://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}
# S3_HOST: domain only, with no protocol or trailing slash.
S3_HOST=
S3_KEY_ID=
S3_KEY_SECRET=
S3_BUCKET_NAME=
S3_BUCKET_REGION=eu-west-3
# S3_LOCATION: If the S3 bucket is shared, add a unique folder name
S3_LOCATION=
# (Optional) FORCE_SCRIPT_NAME: used to allow to the site to be served under a sub-path
FORCE_SCRIPT_NAME=
# (Optional) ProConnect settings
PROCONNECT_ACTIVATED=False
PROCONNECT_DOMAIN=
PROCONNECT_CREATE_USER=
PROCONNECT_CLIENT_ID=
PROCONNECT_CLIENT_SECRET=
# (optional) Email settings
DEFAULT_FROM_EMAIL=
EMAIL_HOST=
EMAIL_PORT=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_USE_TLS=
EMAIL_USE_SSL=
EMAIL_TIMEOUT=30
EMAIL_SSL_KEYFILE=
EMAIL_SSL_CERTFILE=
WAGTAIL_PASSWORD_RESET_ENABLED=False
# WAGTAIL_PASSWORD_RESET_ENABLED: set to true to be able to send the email
# from the DEFAULT_FROM_EMAIL through the defined SMTP parameters