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
Create config.py that has 4 classes. Config, DevelopmentConfig, TestingConfig, ProductionConfig All should inherit from Config
Create dict config that has development, testing, production, default config levels as keys, Config objects as values. default should be DevelopmentConfig
Integrate loading config into application factory
Config
init_app static method that takes in app and does nothing i.e. pass
Overall
config.py
that has 4 classes.Config, DevelopmentConfig, TestingConfig, ProductionConfig
All should inherit fromConfig
config
that hasdevelopment, testing, production, default
config levels as keys, Config objects as values.default
should beDevelopmentConfig
Config
init_app
static method that takes in app and does nothing i.e.pass
SECRET_KEY = RANDOM_HASH
DebugConfig
DEBUG = True
TestingConfig
TESTING = True
ProductionConfig
pass
for nowDepends on #51 being finished
The text was updated successfully, but these errors were encountered: