diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-16 11:25:08 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-16 11:25:08 +0200 |
| commit | 67e6c6344e2828bcda8700e44da3ff5c96bc035b (patch) | |
| tree | 8732199f7124e37c068535071707d160b7de153c /config.py | |
| parent | d304a470e5a9fae6fc0c8975f050cb7aa290f74a (diff) | |
Cleaned up the code to generate test data
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" |
