
fixes #53 fixes #54 Thanks for the heads up @Jeena (I guess I hadn't looked at the readme in about a year...) and sorry it was a pain to get running!
15 lines
378 B
Text
15 lines
378 B
Text
import os
|
|
|
|
DEBUG = True
|
|
# do not intercept redirects when using debug toolbar
|
|
DEBUG_TB_INTERCEPT_REDIRECTS = False
|
|
SECRET_KEY = 'super secret key'
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'postgres:///woodwind'
|
|
PER_PAGE = 100
|
|
|
|
# client secret and key for fetch twitter contexts from granary.appspot.com
|
|
TWITTER_AU_KEY = '...'
|
|
TWITTER_AU_SECRET = '...'
|
|
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|