"Refactor calendar template and database schema"

This commit is contained in:
Till Tomczak 2025-05-29 17:21:16 +02:00
parent cc65cef9d6
commit 731a9fe6f1
3 changed files with 10 additions and 5 deletions

View File

@ -4343,19 +4343,19 @@ if __name__ == "__main__":
ssl_context = get_ssl_context()
if ssl_context:
app_logger.info("Starte HTTPS-Server auf 0.0.0.0:443")
app_logger.info("Starte HTTPS-Server auf 0.0.0.0:8443")
app.run(
host="0.0.0.0",
port=443,
port=8443,
debug=False,
ssl_context=ssl_context,
threaded=True
)
else:
app_logger.info("Starte HTTP-Server auf 0.0.0.0:80")
app_logger.info("Starte HTTP-Server auf 0.0.0.0:8080")
app.run(
host="0.0.0.0",
port=80,
port=8080,
debug=False,
threaded=True
)
@ -4371,3 +4371,9 @@ if __name__ == "__main__":
except:
pass
sys.exit(1)
try:
stop_queue_manager()
except:
pass
sys.exit(1)

Binary file not shown.

View File

@ -769,5 +769,4 @@ document.addEventListener('DOMContentLoaded', function() {
};
});
</script>
{% endblock %}
{% endblock %}