forked from pep-dortmund/member-database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv-template
31 lines (25 loc) · 860 Bytes
/
env-template
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
# Debug will show tracebacks in the browser
# print mails instead of sending them and reload on changes
export FLASK_DEBUG=true
# Set this to an absolute! path on your machine
# or to the connection to the actual database for the deployment
# e.g. "sqlite:////home/maxnoe/pepdb.sqlite"
export DATABASE_URL='sqlite:////dbpath'
# Set this to the domain this runs on for deployment
export SERVER_NAME=''
# set to true for deployment
export USE_HTTPS=false
export SECRET_KEY='changeme'
export MAIL_SENDER='PeP Database'
export MAIL_SERVER=''
export MAIL_PORT=587
export MAIL_USE_TLS=true
export MAIL_USE_SSL=false
export MAIL_USERNAME=''
export MAIL_PASSWORD=''
# This mail address gets notified if new members register
export APPROVE_MAIL=''
# This email get's error logs
export ADMIN_MAIL=''
export LOG_FILE='memberdb.log'
export FLASK_APP=member_database