I forgot to commit, but yeah i started learning kaplay and made UI for it, and added settings, no game done yet.

This commit is contained in:
csd4ni3l
2025-10-29 22:18:45 +01:00
parent e08062a732
commit 5bc9ace173
9 changed files with 488 additions and 1 deletions
+5
View File
@@ -251,4 +251,9 @@ def logout():
flask_login.logout_user()
return redirect(url_for("login"))
@app.route("/pumpkin_memory")
@login_required
def pumpkin_memory():
return render_template("pumpkin_memory.jinja2")
app.run(host=os.getenv("HOST", "0.0.0.0"), port=int(os.getenv("PORT", 8080)), debug=os.getenv("DEBUG_MODE", False).lower() == "true")