diff options
Diffstat (limited to 'config.py')
| -rw-r--r-- | config.py | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -5,12 +5,8 @@ class Config: ASSETS_DEBUG = False -class YouthConfig(Config): - DATABASE = "test_data_large.csv" - - -class SeniorConfig(Config): - DATABASE = "test_data_large.csv" +class ProductionConfig(Config): + pass class DevelopmentConfig(Config): @@ -18,4 +14,3 @@ class DevelopmentConfig(Config): DEVELOPMENT = True TEMPLATES_AUTO_RELOAD = True ASSETS_DEBUG = True - DATABASE = "test_data_large.csv" |
