mirror of
https://github.com/Xevion/trivia.git
synced 2025-12-10 18:08:56 -06:00
23 lines
305 B
Python
23 lines
305 B
Python
"""
|
|
config.py
|
|
|
|
|
|
"""
|
|
|
|
configs = {
|
|
'production': 'trivia.config.Config',
|
|
'development': 'trivia.config.Config',
|
|
'demo': 'trivia.config.DemoConfig'
|
|
}
|
|
|
|
|
|
class Config(object):
|
|
SCORE_FILE = 'scores.json'
|
|
DEMO = False
|
|
|
|
|
|
|
|
class DemoConfig(Config):
|
|
SCORE_FILE = 'demo.json'
|
|
DEMO = True
|