From cdb1ccf6d67c1339676369ea5318b5d87bc4b78e Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sat, 10 Oct 2015 15:00:08 -0700 Subject: [PATCH] JK, Procfile --- Procfile | 1 + manage.py | 26 +------------------------- 2 files changed, 2 insertions(+), 25 deletions(-) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..3ac500c --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: gunicorn -w 4 -b 0.0.0.0:8000 manage:app diff --git a/manage.py b/manage.py index 02182f4..1beff4d 100644 --- a/manage.py +++ b/manage.py @@ -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()