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