我正在为我的烧瓶应用程序运行 SocketIOServer,并且我有一个如下所示的 run.py 脚本:
import sys
from idateproto import create_app, run_app
if __name__ == "__main__":
if len(sys.argv) > 1:
create_app(sys.argv[1])
else:
create_app('dev')
run_app()
run_app 看起来像这样:
def run_app():
# Run the application
# See flask/app.py run() for the implementation of run().
# See http://werkzeug.pocoo.org/docs/serving/ for the parameters of Werkzeug's run_simple()
# If the debug parameter is not set, Flask does not change app.debug, which is set from
# the DEBUG app config variable, which we've set in create_app().
#app.run(**app_run_args)
global app
global middleware
SocketIOServer((app.config['HOST'], app.conf`enter code here`ig['PORT']), middleware,namespace="socket.io", policy_server=False).serve_forever()
我像这样运行:python run.py production/dev/test 等。
现在我想使用 gunicorn 在生产中运行它,所有在线教程都建议执行以下操作: gunicorn run:app -c gunicorn-config.py 我的问题是我不想再只运行我的应用程序了。我想告诉 gunicorn 在 SocketIOServer 上运行 serve_forever 方法,我在网上做了很多研究,找不到实现这一点的方法。请帮忙。