10 lines
182 B
Python
10 lines
182 B
Python
import os
|
|
|
|
# Make filepaths relative to settings.
|
|
ROOT = os.path.dirname(os.path.abspath(__file__))
|
|
path = lambda *a: os.path.join(ROOT, *a)
|
|
|
|
JINJA_CONFIG = {}
|
|
|
|
SECRET_KEY = 'jingo'
|