reworked structure and improved performance to handle 500 concurrent users

This commit is contained in:
2026-02-20 18:31:16 +01:00
parent 7226c0c698
commit f192355ec6
21 changed files with 1535 additions and 386 deletions

5
app/wsgi.py Normal file
View File

@@ -0,0 +1,5 @@
import eventlet
eventlet.monkey_patch()
from app import create_app
app = create_app()