10 lines
384 B
Bash
10 lines
384 B
Bash
# Non-critical configuration values for the runtime environment
|
|
# File is read automatically if python-dotenv is installed
|
|
|
|
# set this to your app's name if you want to omit the flask option '--app=<app_name>' on the command line
|
|
FLASK_APP = "the_works"
|
|
|
|
# environment to run the app in; possible values are "development", "production", "testing"
|
|
FLASK_APP_MODE = "development"
|
|
|