12 lines
260 B
Python
Executable File
12 lines
260 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Configuration settings for fileHost.
|
|
`buckler` specifies settings pertaining to the Buckler server.
|
|
"""
|
|
buckler = {
|
|
'url': "http://127.0.0.1:5400/buckler",
|
|
'app_id': 1,
|
|
'app_key': """password""",
|
|
'login_url': "/buckler/login",
|
|
}
|