Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from flask import Flask, render_template
|
2 |
+
|
3 |
+
app = Flask(__name__, static_folder='static', template_folder='templates')
|
4 |
+
|
5 |
+
@app.route('/')
|
6 |
+
def home():
|
7 |
+
return render_template('Menu.html')
|
8 |
+
|
9 |
+
if __name__ == '__main__':
|
10 |
+
app.run(host='0.0.0.0', port=5000, debug=True)
|
11 |
+
|