diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-16 11:46:39 +0200 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2024-10-16 11:46:39 +0200 |
| commit | f6f8cb4f1bf643a8d29f917d5c977cb2343f2672 (patch) | |
| tree | 8bbd6d244e0f19196a71d67274f25da29f01a44a /config.py | |
| parent | fbed8387a39e42cee7235384d7f8380ee158a3b3 (diff) | |
Clean folder and configuration
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" |
