-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
executable file
·51 lines (41 loc) · 1.2 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Per environment config file; supposed to be in env variables
; Comments start with ';'
; depending on your environment rename to env and update files accordingly
; DON'T QUOTE VALUES WITH SINGLE QUOTES. USE DOUBLE QUOTES OR DON'T QUOTE AT ALL
; https://github.com/theskumar/python-dotenv/issues/35
; development=local developer machine
; staging=similar to production, equivalent to QA
; production=production
APP_ENV=development
DEBUG=false
LOGLEVEL=info
; Admins
ADMINS="[email protected], [email protected]"
# Database
DB_HOST=127.0.0.1
DB_PORT=
DB_USER=database_user
DB_PASSWORD=database_password
DB_NAME=database_name
# Email / SMTP
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=smtp_username
SMTP_PASSWORD=
SMTP_USE_TLS="true"
SMTP_USE_SSL="false"
# Generate your keys here: https://roots.io/salts.html or https://api.wordpress.org/secret-key/1.1/salt
SECRET_KEY=generateme
API_KEY=local
CSRF_SESSION_KEY=generateme
WTF_CSRF_SECRET_KEY=generateme
SC_SMS_END_POINT=""
UX_SMS_END_POINT=""
UX_SMS_API_KEY=""
OPEN311_PHONE_KEY="666333"
; Report receivers
DAILY_REPORT_TO="[email protected], [email protected]"
DAILY_REPORT_CC="[email protected], [email protected]"
# Maptplot
DISPLAY=:0.0
; vim:ft=dosini: