first commit

This commit is contained in:
Blake Ridgway 2024-12-29 20:12:21 -06:00
commit 18bcafe29b
8 changed files with 143 additions and 0 deletions

10
server.py Normal file
View file

@ -0,0 +1,10 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def index():
return render_template("index.html")
if __name__ == "__main__":
app.run(debug=True)