Buckler/config.py.template
2019-09-19 20:49:40 -04:00

27 lines
626 B
Python
Executable File

#!/usr/bin/env python3
"""
Configuration settings for Buckler.
`server_domain` is the server's domain.
`url_prefix` is the root path you wish app to reside at
eg. https://example.com/buckler
`db` specifies parameters for connecting to the PostgreSQL database.
`email` specifies parameters for connecting to the SMTP server.
"""
server_domain = 'https://steelbea.me'
url_prefix = '/buckler'
db = {
'database': 'buckler',
'user': 'buckler',
'password': """password""",
'host': 'localhost',
'port': 5432,
}
email = {
'host': 'mail.steelbea.me',
'port': 465,
'user': 'buckler@steelbea.me',
'password': """password"""
}