fix the woefully outdated requirements and installation instructions

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!
This commit is contained in:
Kyle Mahan 2016-05-21 08:00:09 -07:00
parent 0a4dd14189
commit c8f7213b39
3 changed files with 19 additions and 7 deletions

View file

@ -5,9 +5,11 @@ DEBUG = True
DEBUG_TB_INTERCEPT_REDIRECTS = False
SECRET_KEY = 'super secret key'
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.getcwd() + '/db.sqlite'
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