akindices/config.py.default
Matthew Dillon (diogenes) 7db313fcb9 Renamed config
2013-09-08 21:13:02 -08:00

16 lines
367 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