10 lines
182 B
Python
Raw Normal View History

import os
# Make filepaths relative to settings.
ROOT = os.path.dirname(os.path.abspath(__file__))
path = lambda *a: os.path.join(ROOT, *a)
2010-02-09 16:35:16 -08:00
JINJA_CONFIG = {}
2012-11-30 12:36:57 -05:00
SECRET_KEY = 'jingo'