MenuPage / app.py
dschandra's picture
Update app.py
889fd00 verified
raw
history blame
266 Bytes
from flask import Flask, render_template
app = Flask(__name__, static_folder='static', template_folder='templates')
@app.route('/')
def home():
return render_template('Menu.html')
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860, debug=True)