13 lines
226 B
Python
13 lines
226 B
Python
from uuid import uuid4
|
|
|
|
config = ('global', {
|
|
'debug': False,
|
|
'host': '0.0.0.0',
|
|
'port': 5000,
|
|
'username': '',
|
|
'password': '',
|
|
'launch_browser': True,
|
|
'url_base': '',
|
|
'api_key': uuid4().hex,
|
|
})
|