feat: adding wsgi runner

This commit is contained in:
akhdanre 2025-05-21 15:55:58 +07:00
parent b18f7f78e3
commit b56f824b81
3 changed files with 6 additions and 0 deletions

Binary file not shown.

Binary file not shown.

6
wsgi.py Normal file
View File

@ -0,0 +1,6 @@
import eventlet
eventlet.monkey_patch()
from app.main import createApp
app, socketio = createApp()