Add heroku config
This commit is contained in:
parent
7cadd8fd31
commit
43fbaa3c66
3 changed files with 15 additions and 1 deletions
2
Procfile
2
Procfile
|
@ -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
|
init: python manage.py initdb
|
||||||
|
|
|
@ -23,8 +23,16 @@ class DevelopmentConfig(Config):
|
||||||
'postgres://matthew@localhost/akindices'
|
'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 = {
|
config = {
|
||||||
'development': DevelopmentConfig,
|
'development': DevelopmentConfig,
|
||||||
|
'heroku': HerokuConfig,
|
||||||
|
|
||||||
'default': DevelopmentConfig
|
'default': DevelopmentConfig
|
||||||
}
|
}
|
||||||
|
|
6
heroku-run.py
Normal file
6
heroku-run.py
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
from app import create_app
|
||||||
|
|
||||||
|
app = create_app('heroku')
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
app.run()
|
Loading…
Add table
Reference in a new issue