Skip to content

Commit 8cfc3a8

Browse files
William YanezWilliam Yanez
authored andcommitted
Add UI Dashboard
1 parent 22210fd commit 8cfc3a8

4 files changed

Lines changed: 1119 additions & 0 deletions

File tree

app.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from flask import Flask, render_template
2+
3+
app = Flask(__name__)
4+
5+
6+
@app.route("/")
7+
def index():
8+
return render_template("index.html")
9+
10+
11+
if __name__ == "__main__":
12+
app.run(host="0.0.0.0", port=5050, debug=True)

0 commit comments

Comments
 (0)