Initial commit

This commit is contained in:
2025-11-23 18:38:01 -08:00
commit 848eb0370f
6 changed files with 120 additions and 0 deletions

11
source/app.py Normal file
View File

@@ -0,0 +1,11 @@
from flask import Flask, redirect, render_template
app = Flask(__name__)
PORT = 8080
@app.route("/")
def home():
return render_template("index.html")
if __name__ == "__main__":
app.run(port=PORT)