akindices/config.py.default
Matthew Dillon (diogenes) b2f6707d36 Renamed to 'AKIndices'
2013-09-16 20:30:32 -08:00

17 lines
384 B
Text

# -*- coding: utf-8 -*-
import datetime
PERMANENT_SESSION_LIFETIME = datetime.timedelta(minutes=30)
CSRF_ENABLED = True
SECRET_KEY = 'A super secret key'
DEBUG = False
# Custom
ENGINE = 'postgres://user:pass@localhost/akindices'
SNAPDATA = '/path/to/raw/data'
COMMUNITIES = '/path/to/list/of/communities'
LOG = 'akindices.log'
MAXLOG = 1000000
BACKUPCOUNT = 10
TITLE = 'AKIndices'