mirror of
https://github.com/StefBuwalda/WebTech.git
synced 2025-10-30 11:19:58 +00:00
14 lines
227 B
Python
14 lines
227 B
Python
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)
|