mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
33 lines
738 B
Python
33 lines
738 B
Python
|
# The full URL base asset URL, with trailing slash.
|
||
|
ASSETS_BASEURL = ''
|
||
|
|
||
|
# The full URL base song URL, with trailing slash.
|
||
|
SONGS_BASEURL = ''
|
||
|
|
||
|
# The email address to display in the "About Simulator" menu.
|
||
|
EMAIL = 'taiko@example.com'
|
||
|
|
||
|
# Whether to use the user account system.
|
||
|
ACCOUNTS = True
|
||
|
|
||
|
# MongoDB server settings.
|
||
|
MONGO = {
|
||
|
'host': ['localhost:27017'],
|
||
|
'database': 'taiko'
|
||
|
}
|
||
|
|
||
|
# Redis server settings, used for sessions + cache.
|
||
|
REDIS = {
|
||
|
'CACHE_TYPE': 'redis',
|
||
|
'CACHE_REDIS_HOST': '127.0.0.1',
|
||
|
'CACHE_REDIS_PORT': 6379,
|
||
|
'CACHE_REDIS_PASSWORD': None,
|
||
|
'CACHE_REDIS_DB': None
|
||
|
}
|
||
|
|
||
|
# Secret key used for sessions.
|
||
|
SECRET_KEY = 'change-me'
|
||
|
|
||
|
# Git repository base URL.
|
||
|
URL = 'https://github.com/bui/taiko-web/'
|