2019-06-13 20:28:47 -04:00
|
|
|
#!/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.
|
2019-06-16 18:22:47 -04:00
|
|
|
`registration_open` whether or not new accounts may be registered.
|
2019-09-25 19:57:54 -04:00
|
|
|
`buckler` specifies settings pertaining to the Buckler server.
|
2019-06-13 20:28:47 -04:00
|
|
|
"""
|
|
|
|
url_prefix = '/juice'
|
2019-06-16 18:22:47 -04:00
|
|
|
registration_open = True
|
2019-09-25 19:57:54 -04:00
|
|
|
buckler = {
|
|
|
|
'url': "http://127.0.0.1:5400/buckler",
|
|
|
|
'app_id': 2,
|
|
|
|
'app_key': """lol""",
|
|
|
|
'login_url': "/buckler/login",
|
|
|
|
}
|