-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.py
35 lines (27 loc) · 878 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# The full URL base asset URL, with trailing slash.
ASSETS_BASEURL = 'https://ks1.kiremani.net/taiko/assets-200222-p3/'
# The full URL base song URL, with trailing slash.
SONGS_BASEURL = '/songs/'
# The email address to display in the "About Simulator" menu.
EMAIL = '[email protected]'
# Whether to use the user account system.
ACCOUNTS = True
# Custom JavaScript file to load with the simulator.
CUSTOM_JS = ''
# MongoDB server settings.
MONGO = {
'host': ['mongodb://root:password@mongo:27017'],
'database': 'taiko'
}
# Redis server settings, used for sessions + cache.
REDIS = {
'CACHE_TYPE': 'redis',
'CACHE_REDIS_HOST': 'redis',
'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/'