File tree Expand file tree Collapse file tree 1 file changed +12
-10
lines changed
Expand file tree Collapse file tree 1 file changed +12
-10
lines changed Original file line number Diff line number Diff line change 1- # True for development, False for production
1+ # True in development, False in production
22DEBUG=True
33
4- # Flask ENV
54FLASK_APP=run.py
6- SECRET_KEY=YOUR_SUPER_KEY
5+ FLASK_ENV=development
76
8- # Used for CDN (in production)
9- # No Slash at the end
10- ASSETS_ROOT=/static/assets
7+ # If not provided, a random one is generated
8+ # SECRET_KEY=<YOUR_SUPER_KEY_HERE>
119
12- # If DEBUG=False (production mode)
10+ # If DB credentials (if NOT provided, or wrong values SQLite is used)
1311# DB_ENGINE=mysql
14- # DB_NAME=appseed_db
1512# DB_HOST=localhost
16- # DB_PORT=3306
13+ # DB_NAME=appseed_db
1714# DB_USERNAME=appseed_db_usr
18- # DB_PASS=<STRONG_PASS>
15+ # DB_PASS=pass
16+ # DB_PORT=3306
17+
18+ # Used for CDN (in production)
19+ # No Slash at the end
20+ ASSETS_ROOT=/static/assets
1921
2022# SOCIAL AUTH Github
2123# GITHUB_ID=YOUR_GITHUB_ID
You can’t perform that action at this time.
0 commit comments