goingyt commited on
Commit
6badde7
Β·
verified Β·
1 Parent(s): 4411750

Create app/main.py

Browse files
Files changed (1) hide show
  1. app/main.py +10 -0
app/main.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, render_template
2
+
3
+ app = Flask(__name__)
4
+
5
+ @app.route('/')
6
+ def index():
7
+ return render_template('index.html')
8
+
9
+ if __name__ == '__main__':
10
+ app.run(host='0.0.0.0', port=7860)