Stickup/config.py.template

17 lines
445 B
Python

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