dschandra commited on
Commit
889fd00
·
verified ·
1 Parent(s): e0684c4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,6 +6,6 @@ app = Flask(__name__, static_folder='static', template_folder='templates')
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
 
 
6
  def home():
7
  return render_template('Menu.html')
8
 
9
+ if __name__ == "__main__":
10
+ app.run(host="0.0.0.0", port=7860, debug=True)
11