deedrop1140 commited on
Commit
1fd12bd
·
verified ·
1 Parent(s): e5913f8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -1484,10 +1484,8 @@ def DBSCAN():
1484
  return render_template('DBSCAN.html')
1485
 
1486
 
1487
- if __name__ == '__main__':
1488
- #app.run(debug=True, port=5000)
1489
-
1490
- app.run(debug=True,use_reloader=False)
1491
 
1492
 
1493
 
 
1484
  return render_template('DBSCAN.html')
1485
 
1486
 
1487
+ if __name__ == "__main__":
1488
+ app.run(host="0.0.0.0", port=7860)
 
 
1489
 
1490
 
1491