Juice/config.py.template

17 lines
472 B
Python

#!/usr/bin/env python3
"""
Configuration settings for the Juice IOT hub server.
`url_prefix` is the root path you wish app to reside at
eg. https://example.com/juice.
`registration_open` whether or not new accounts may be registered.
`buckler` specifies settings pertaining to the Buckler server.
"""
url_prefix = '/juice'
registration_open = True
buckler = {
'url': "http://127.0.0.1:5400/buckler",
'app_id': 2,
'app_key': """lol""",
'login_url': "/buckler/login",
}