17 lines
364 B
Python
17 lines
364 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Configuration settings for Buckler.
|
|
`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.
|
|
"""
|
|
url_prefix = '/buckler'
|
|
|
|
db = {
|
|
'database': 'buckler',
|
|
'user': 'buckler',
|
|
'password': 'password',
|
|
'host': 'localhost',
|
|
'port': 5432,
|
|
}
|