Copied structure and files from Roos

This commit is contained in:
2025-04-03 15:52:27 +02:00
parent c87ed9cbd6
commit 66d79eeb89
13 changed files with 183 additions and 0 deletions

13
app.py Normal file
View File

@@ -0,0 +1,13 @@
from application import app
from flask import render_template
# home route
@app.route("/")
def index():
return render_template("home.html")
# App deployment
if __name__ == "__main__":
app.run(debug=True, port=5000)