-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
30 lines (26 loc) · 906 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
# Django
DEBUG=on
SECRET_KEY=
ALLOWED_HOSTS=host,10.0.0.1
DATABASE_URL=psql://user:password@host:5432/db_name
TZ=Asia/Jerusalem
BASE_URL=http://example.com
# LDAP
LDAP_SERVER_URI=ldap://example.com
LDAP_BIND_DN=user@example.com
LDAP_BIND_PASSWORD=s3cr3t_p4ssw0rd
LDAP_BASE_DN=DC=example,DC=com
# Email
EMAIL_HOST=smtp.office365.com
EMAIL_PORT=587
EMAIL_USER=user@example.com
EMAIL_PASSWORD=Ex4mpL3_1234
EMAIL_RECIPIENTS=people@example.com,more_people@example.com
EMAIL_TEST_RECIPIENTS=people@example.com,more_people@example.com
# Rollbar
ROLLBAR_TOKEN=
# Corona
CORONA_EMAIL_USER=user@example.com
CORONA_EMAIL_PASSWORD=Ex4mpL3_1234
CORONA_EMAIL_RECIPIENTS=people@example.com,more_people@example.com
CORONA_REPORT_DOMAIN_RECIPIENTS_MAP='{ "example.com": ["people@example.com", "more_people@example.com"], "another-example.com": ["other_people@another-example.com", "more_people@another-example.com"] }'