JK, Procfile

This commit is contained in:
Matthew Dillon 2015-10-10 15:00:08 -07:00
parent 6a6b2e5205
commit cdb1ccf6d6
2 changed files with 2 additions and 25 deletions

1
Procfile Normal file
View file

@ -0,0 +1 @@
web: gunicorn -w 4 -b 0.0.0.0:8000 manage:app

View file

@ -1,29 +1,7 @@
#!/usr/bin/env python
import os
from app import create_app, db
from flask.ext.script import Manager, Shell, Command, Option
# http://stackoverflow.com/a/24606817
class GunicornServer(Command):
"""Run the app within Gunicorn"""
def get_options(self):
from gunicorn.config import make_settings
settings = make_settings()
options = (
Option(*klass.cli, action=klass.action)
for setting, klass in settings.iteritems() if klass.cli
)
return options
def run(self, *args, **kwargs):
from gunicorn.app.wsgiapp import WSGIApplication
app = WSGIApplication()
app.app_uri = 'manage:app'
return app.run()
from flask.ext.script import Manager
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
@ -46,8 +24,6 @@ def initdb():
);"""
_ = db.engine.execute(text(cmd))
manager.add_command("gunicorn", GunicornServer())
if __name__ == '__main__':
manager.run()