JK, Procfile
This commit is contained in:
parent
6a6b2e5205
commit
cdb1ccf6d6
2 changed files with 2 additions and 25 deletions
1
Procfile
Normal file
1
Procfile
Normal file
|
@ -0,0 +1 @@
|
|||
web: gunicorn -w 4 -b 0.0.0.0:8000 manage:app
|
26
manage.py
26
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()
|
||||
|
|
Loading…
Add table
Reference in a new issue