forked from ertush/mfl_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env-example
27 lines (20 loc) · 909 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
# DO NOT USE THESE IN PRODUCTION!
SECRET_KEY=pleasechangetoanewlygeneratedsecretkey
DEBUG=off # NEVER run with Debug=True in production
# Use real email settings here e.g from Amazon SES
EMAIL_HOST=''
EMAIL_HOST_USER=''
EMAIL_HOST_PASSWORD=''
# Here because the original user was too lazy to write ruby code for the VagrantFile
DATABASE_USER=mfl_testing # Change this
DATABASE_PASSWORD=mfl_testing # **CHANGE** this, no matter how lazy you feel
DATABASE_NAME=mfl_testing # Change this
# Make sure you change this in lockstep with the three DATABASE_* vars above
DATABASE_URL='postgres://mfl_testing:mfl_testing@localhost:5432/mfl_testing'
# Location where the administration frontend is running
FRONTEND_URL='http://localhost:8062'
REALTIME_INDEX = true
HTTPS_ENABLED = false
ALLOWED_HOSTS=".localhost, .health.go.ke"
# Toggle synchronization of the facilities to KHIS Tracker
PUSH_TO_TRACKER=false