Stickup/config.py.template

24 lines
583 B
Plaintext
Raw Normal View History

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,
2020-11-17 12:46:58 -05:00
'app_key': r"""password""",
2020-11-12 13:21:26 -05:00
'login_url': "https://steelbea.me/buckler/login",
2020-11-11 13:27:18 -05:00
}
2020-11-17 12:46:58 -05:00
mailserver_db = {
'database': 'mailserver',
'user': 'mailserver',
'password': r"""password""",
'host': 'localhost',
'port': 5432,
}