Zery commited on
Commit
56462e2
1 Parent(s): 5801f01

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -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(debug=False, port=7860, host="0.0.0.0")