11 lines
176 B
Plaintext
11 lines
176 B
Plaintext
|
# config.py.sample
|
||
|
|
||
|
class Config:
|
||
|
DEBUG = False
|
||
|
SECRET_KEY = 'a_secret_key'
|
||
|
|
||
|
class DevelopmentConfig(Config):
|
||
|
DEBUG = True
|
||
|
|
||
|
class ProductionConfig(Config):
|
||
|
pass
|