You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The app breaks when setting the FLASK_ENV variable and changing the necessary code to accept that variable. It seems like it could be a circular dependency issue.
The desired way to set which config it is using is by setting the FLASK_ENV variable and then running flask run. The environments currently available are development, testing, and production. Right now, DevelopmentConfig is hardcoded in the __init__.py in the app directory.
The text was updated successfully, but these errors were encountered:
The app breaks when setting the
FLASK_ENV
variable and changing the necessary code to accept that variable. It seems like it could be a circular dependency issue.The desired way to set which config it is using is by setting the
FLASK_ENV
variable and then runningflask run
. The environments currently available are development, testing, and production. Right now, DevelopmentConfig is hardcoded in the__init__.py
in the app directory.The text was updated successfully, but these errors were encountered: