Avec gunicorn le page_container était introuvable

This commit is contained in:
Colin Maudry
2025-04-21 19:12:43 +02:00
parent c8cae37ff1
commit 67ee8628da
2 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -4,6 +4,6 @@ from src.app import app
# To use `gunicorn run:server` (prod)
server = app.server
# To use `python index.py` (dev)
# To use `python run.py` (dev)
if __name__ == "__main__":
app.run(debug=True)
app.run_server(debug=True)