18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
|
#!/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,
|
||
|
}
|