flask test

from myapp import app, db, models @manager.command def run_server(): from gunicorn.app.base import Application from gunicorn.six import iteritems workers = 4 options = { 'workers': workers, 'bind': '0.0.0.0:5000', } class GunicornRunner(Application): def __init__(self, app, options=None): self.options = options or {} self.application = app super(GunicornRunner, self).__init__() def load_config(self): config = dict([(key, value) for key, value in iteritems(self.options) if key in self.cfg.settings and value is not None]) for key, value in iteritems(config): self.cfg.set(key.lower(), value) def load(self): return self.application GunicornRunner(app, options).run() def main(): manager.run()

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.