10 lines
285 B
Python
10 lines
285 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.
|
|
"""
|
|
url_prefix = '/juice'
|
|
registration_open = True
|