This commit is contained in:
jpmvaz
2026-09-13 20:09:20 +01:00
commit 9b5cc30fb4
482 changed files with 57569 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
"""WSGI entry point for the frontoffice (port 8080)."""
from app import create_app
application = create_app("frontoffice")
if __name__ == "__main__":
import os
port = int(os.environ.get("FRONTOFFICE_PORT", "8080"))
application.run(host="0.0.0.0", port=port, debug=False)