gevent concurrency / asynchronous processes

usage of gunicorn (documented)
This commit is contained in:
Josako
2024-04-30 15:50:12 +02:00
parent ffa60b4616
commit 0b7f565547
4 changed files with 13 additions and 3 deletions

View File

@@ -4,6 +4,8 @@ from flask_bootstrap import Bootstrap
from flask_security import Security
from flask_mailman import Mail
from flask_login import LoginManager
from flask_cors import CORS
# Create extensions
db = SQLAlchemy()
@@ -12,3 +14,4 @@ bootstrap = Bootstrap()
security = Security()
mail = Mail()
login_manager = LoginManager()
cors = CORS()