📚 Improved backend structure & error handling (#123) 🖥️🔧

This commit is contained in:
2025-05-31 21:56:50 +02:00
parent 8d29b2634a
commit a36c14115a
3 changed files with 520 additions and 91 deletions

View File

@@ -5611,10 +5611,10 @@ if __name__ == "__main__":
threaded=True
)
else:
app_logger.info("Starte HTTP-Server auf 0.0.0.0:8080")
app_logger.info("Starte HTTP-Server auf 0.0.0.0:80")
app.run(
host="0.0.0.0",
port=8080,
port=80,
debug=False,
threaded=True
)