File tree Expand file tree Collapse file tree 2 files changed +27
-14
lines changed
Expand file tree Collapse file tree 2 files changed +27
-14
lines changed Original file line number Diff line number Diff line change 1+ # True for development, False for production
12DEBUG = True
23
4+ # Flask ENV
35FLASK_APP = run.py
46FLASK_ENV = development
57
8+ # If not provided, a random one is generated
9+ # SECRET_KEY=<YOUR_SUPER_KEY_HERE>
10+
11+ # Used for CDN (in production)
12+ # No Slash at the end
613ASSETS_ROOT = /static/assets
714
15+ # If DEBUG=False (production mode)
816# DB_ENGINE=mysql
9- # DB_HOST=localhost
1017# DB_NAME=appseed_db
11- # DB_USERNAME=appseed_db_usr
12- # DB_PASS=pass
18+ # DB_HOST=localhost
1319# DB_PORT=3306
20+ # DB_USERNAME=appseed_db_usr
21+ # DB_PASS=<STRONG_PASS>
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
65FLASK_ENV=development
7- SECRET_KEY=YOUR_SUPER_KEY
8-
9- # If DEBUG=False (production mode)
10- DB_ENGINE=mysql
11- DB_NAME=appseed_db
12- DB_HOST=localhost
13- DB_PORT=3306
14- DB_USERNAME=appseed_db_usr
15- DB_PASS=<STRONG_PASS>
6+
7+ # If not provided, a random one is generated
8+ # SECRET_KEY=<YOUR_SUPER_KEY_HERE>
9+
10+ # If DB credentials (if NOT provided, or wrong values SQLite is used)
11+ # DB_ENGINE=mysql
12+ # DB_HOST=localhost
13+ # DB_NAME=appseed_db
14+ # DB_USERNAME=appseed_db_usr
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
You can’t perform that action at this time.
0 commit comments