mirror of
https://github.com/573dev/gfdm-server.git
synced 2026-07-06 19:54:21 -05:00
15 lines
292 B
Python
15 lines
292 B
Python
class Config(object):
|
|
DEBUG: bool = False
|
|
TESTING: bool = False
|
|
DB_SERVER: str = "localhost"
|
|
SECRET_KEY_FILENAME: str = "v8_server.key"
|
|
|
|
|
|
class Development(Config):
|
|
DEBUG: bool = True
|
|
SECRET_KEY_FILENAME: str = "dev_v8_server.key"
|
|
|
|
|
|
class Production(Config):
|
|
pass
|