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


class ProductionConfig(Config):
    pass


class DevelopmentConfig(Config):
    DEBUG = True
    DEVELOPMENT = True
    TEMPLATES_AUTO_RELOAD = True
    ASSETS_DEBUG = True