29 lines
462 B
Python
29 lines
462 B
Python
# config.py
|
|
|
|
class Config(object):
|
|
"""
|
|
Common configurations
|
|
"""
|
|
|
|
# Put any configurations here that are common across all environments
|
|
|
|
class DevelopmentConfig(Config):
|
|
"""
|
|
Development configurations
|
|
"""
|
|
|
|
DEBUG = True
|
|
SQLALCHEMY_ECHO = True
|
|
|
|
class ProductionConfig(Config):
|
|
"""
|
|
Production configurations
|
|
"""
|
|
|
|
DEBUG = False
|
|
|
|
app_config = {
|
|
'development': DevelopmentConfig,
|
|
'production': ProductionConfig
|
|
}
|