Add heroku config

This commit is contained in:
Matthew Dillon 2015-10-12 09:18:17 -07:00
parent 7cadd8fd31
commit 43fbaa3c66
3 changed files with 15 additions and 1 deletions

View file

@ -1,2 +1,2 @@
web: gunicorn -w 4 manage:app --log-file=-
web: gunicorn -w 4 heroku-run:app --log-file=-
init: python manage.py initdb

View file

@ -23,8 +23,16 @@ class DevelopmentConfig(Config):
'postgres://matthew@localhost/akindices'
class HerokuConfig(Config):
DEBUG = False
TITLE = 'AKIndices'
SECRET_KEY = os.environ.get('SECRET_KEY') or 'top secret'
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL')
config = {
'development': DevelopmentConfig,
'heroku': HerokuConfig,
'default': DevelopmentConfig
}

6
heroku-run.py Normal file
View file

@ -0,0 +1,6 @@
from app import create_app
app = create_app('heroku')
if __name__ == "__main__":
app.run()