menu 1 2 3 4 5 7 operationnels

This commit is contained in:
2026-08-03 10:02:12 +02:00
parent b2c241797b
commit f37f5b1e45
25 changed files with 2373 additions and 1120 deletions
+4 -2
View File
@@ -1,4 +1,6 @@
import os
from app import app
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)
if __name__ == "__main__":
debug = os.environ.get("FLASK_ENV") == "development"
app.run(host="0.0.0.0", port=5000, debug=debug)