akindices/config.py.default
Matthew Dillon (diogenes) e56a73e0de Parameterized title
2013-09-09 20:42:52 -08:00

18 lines
390 B
Text

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