MenuPage / app.py
dschandra's picture
Create app.py
c9afd96 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=5000, debug=True)