2019-09-14 18:36:23 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
"""
|
|
|
|
Configuration settings for Buckler.
|
2019-09-15 19:40:58 -04:00
|
|
|
`url_prefix` is the root path you wish app to reside at
|
2019-09-14 18:36:23 -04:00
|
|
|
eg. https://example.com/buckler
|
2019-09-15 19:40:58 -04:00
|
|
|
`db` specifies parameters for connecting to the PostgreSQL database.
|
2019-09-14 18:36:23 -04:00
|
|
|
"""
|
|
|
|
url_prefix = '/buckler'
|
2019-09-15 19:40:58 -04:00
|
|
|
|
|
|
|
db = {
|
|
|
|
'database': 'buckler',
|
|
|
|
'user': 'buckler',
|
|
|
|
'password': 'password',
|
|
|
|
'host': 'localhost',
|
|
|
|
'port': 5432,
|
|
|
|
}
|