-
Notifications
You must be signed in to change notification settings - Fork 1
/
.flaskenv.sample
37 lines (30 loc) · 972 Bytes
/
.flaskenv.sample
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
FLASK_APP=wsgi
FLASK_DEBUG=True
FLASK_ENV=development
FLASK_RUN_PORT=8080
FLASK_RUN_HOST=0.0.0.0
MYSQL_URL=mysql+pymysql://admin:root@mysql:3306/uni
# Mysql conf for docker (you can leave it blank if you are not using docker)
MYSQL_USERNAME=admin
MYSQL_PASSWORD=root
MYSQL_HOST=mysql
MYSQL_PORT=3306 # redirect port of docker, mysql inside docker always would be 3306
MYSQL_DATABASE=uni
REDIS_URL=redis://admin:root@redis:6379/0
# Redis conf for docker (you can leave it blank if you are not using docker)
REDIS_USERNAME=admin
REDIS_PASSWORD=root
REDIS_PORT=6379
SECRET_KEY=secret
SENTRY_DSN=your_sentry_dsn
SMTP_SERVER=smtp.example.com
SMTP_PORT=587
SMTP_USERNAME=your_username
SMTP_PASSWORD=password_token # you must use a token instead of your password
APP_URL=http://localhost:5000
# License key for New Relic
NEW_RELIC_LKEY=license_key
# User key for New Relic
NEW_RELIC_UKEY=user_key