2020-11-11 13:27:18 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""
|
2020-11-12 13:21:26 -05:00
|
|
|
Configuration settings for the Stickup email management app.
|
2020-11-11 13:27:18 -05:00
|
|
|
`url_prefix` is the root path you wish app to reside at
|
2020-11-12 13:21:26 -05:00
|
|
|
eg. https://example.com/stickup.
|
2020-11-11 13:27:18 -05:00
|
|
|
`buckler` specifies settings pertaining to the Buckler server.
|
|
|
|
"""
|
2020-11-12 13:21:26 -05:00
|
|
|
server_domain = 'steelbea.me'
|
|
|
|
url_prefix = '/stickup'
|
2020-11-11 13:27:18 -05:00
|
|
|
|
|
|
|
buckler = {
|
2020-11-12 13:21:26 -05:00
|
|
|
'url': "https://steelbea.me/buckler",
|
2020-11-11 13:27:18 -05:00
|
|
|
'app_id': 1,
|
|
|
|
'app_key': """password""",
|
2020-11-12 13:21:26 -05:00
|
|
|
'login_url': "https://steelbea.me/buckler/login",
|
2020-11-11 13:27:18 -05:00
|
|
|
}
|