-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
71 lines (57 loc) · 1.72 KB
/
.env.example
File metadata and controls
71 lines (57 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
# global (different for each developper)
CARBURE_HOME=/path/to/carbure/repo
IMAGE_TAG=local
BASE_URL= # CarbuRe base URL, e.g.: https://example.com
# feature flips
WITH_EMAIL_DECORATED_AS_TEST= # When set to True, will really send emails, but not to real users – typically on dev and staging envs
WITH_SENTRY= # When set to True, will log warnings, infos, errors and runtime exceptions to Sentry – typically on dev, staging and prod envs
WITH_UDB_ACCEPTANCE_DATA= # When set to True, will seed some data in database to reflect test data in UDB acceptance instance
# elec
ELEC_READJUSTEMENT_ENTITY=ELEC ADMIN ENTITY
# mysql
MYSQL_ROOT_PASSWORD=
MYSQL_DATABASE=
MYSQL_USER=
MYSQL_PASSWORD=
MYSQL_PORT=
# redis
REDIS_URL=
# django
DEBUG=1
ALLOWED_HOSTS=
CSRF_TRUSTED_ORIGINS=
SECRET_KEY=
DATABASE_URL=mysql://user:password@host:port/database
# scalingo (different for each developper)
SCALINGO_TOKEN=
SCALINGO_MYSQL_UUID=
# metabase
METABASE_SECRET_KEY=
# eDelivery
DOMIBUS_API_LOGIN= # plugin user login used to call Domibus
DOMIBUS_API_PASSWORD= # plugin user password
DOMIBUS_BASE_URL= # e.g. https://domibus.example.com/domibus
INITIATOR_ACCESS_POINT_ID= # eDelivery C2 identifier, e.g.: blue_gw
UDB_ACCESS_POINT_ID= # eDelivery C3 identifier, e.g.: red_gw
WITH_EDELIVERY= # enables eDelivery polling when set to True
# UDB
CARBURE_NTR= # Carbure National Trade Register number, as declared in UDB
# tools
SENTRY_DSN=
# S3 compatible buckets
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_STORAGE_BUCKET_NAME=
AWS_S3_ENDPOINT_URL=
AWS_S3_REGION_NAME=
AWS_ENV_FOLDER_NAME=
# emails
EMAIL_HOST=
EMAIL_PORT=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=
EMAIL_USE_TLS=
# python path
PYTHONPATH=.:./web
# Max upload size in MB
DATA_UPLOAD_MAX_MEMORY_SIZE_MB=30