Voyage/config.py.template

18 lines
404 B
Plaintext
Raw Permalink Normal View History

2019-12-06 18:13:43 -05:00
#!/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/voyage
`db` specifies parameters for connecting to the PostgreSQL database.
"""
url_prefix = '/voyage'
db = {
'database': 'voyage',
'user': 'voyage',
'password': """password""",
'host': 'localhost',
'port': 5432,
}