17 lines
384 B
Text
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'
|