aboutsummaryrefslogtreecommitdiff
path: root/config.py
blob: bff125a9b740ace2801b6ee3fc5c2508b81546c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Config:
    DEBUG = False
    DEVELOPMENT = False
    CSRF_ENABLED = True
    ASSETS_DEBUG = False


class YouthConfig(Config):
    DATABASE = "test_data_large.csv"


class SeniorConfig(Config):
    DATABASE = "test_data_large.csv"


class DevelopmentConfig(Config):
    DEBUG = True
    DEVELOPMENT = True
    TEMPLATES_AUTO_RELOAD = True
    ASSETS_DEBUG = True
    DATABASE = "test_data_large.csv"