16 lines
369 B
Plaintext
16 lines
369 B
Plaintext
|
|
# True for development, False for production
|
||
|
|
DEBUG=True
|
||
|
|
|
||
|
|
# Flask ENV
|
||
|
|
FLASK_APP=run.py
|
||
|
|
FLASK_ENV=development
|
||
|
|
SECRET_KEY="\xb7;x\x08\x9f\x04\x84\xd1Z\x13\x1b`\xb8B\xf8\xfdlw}7\xf0\xdc\xdf\xfb\x8c\x8a\x87\x86\x1b\x94\tM"
|
||
|
|
|
||
|
|
# If DEBUG=False (production mode)
|
||
|
|
DB_ENGINE=mysql
|
||
|
|
DB_NAME=appseed_db
|
||
|
|
DB_HOST=localhost
|
||
|
|
DB_PORT=3306
|
||
|
|
DB_USERNAME=appseed_db_usr
|
||
|
|
DB_PASS=<STRONG_PASS>
|