You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# All the tags and there human readable name
|
|
|
|
TAGS = {'taghash1': 'tree',
|
|
|
|
'taghash2': 'toilet',
|
|
|
|
'taghash3': 'tent',
|
|
|
|
'taghash4': 'water tap'
|
|
|
|
}
|
|
|
|
|
|
|
|
# Key for starting as a new user.
|
|
|
|
# http://<server>/newuser/<key>
|
|
|
|
# If not used, please use 'None'.
|
|
|
|
# START_KEY = 'secretstartkey'
|
|
|
|
START_KEY = 'None
|
|
|
|
|
|
|
|
# Max time of the game in seconds
|
|
|
|
MAX_TIME = '3600'
|
|
|
|
|
|
|
|
# HTML text for the registration page:
|
|
|
|
REGISTRATION_DESK = 'You can find the registration desk in the center.'
|
|
|
|
|
|
|
|
# For storing the cookie information to the client
|
|
|
|
SECRET_KEY = 'Very secret key!'
|
|
|
|
|
|
|
|
ADMIN_PASSWORD = 'changeme!'
|