arithescientist commited on
Commit
e125e11
·
verified ·
1 Parent(s): 797d797

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -160,12 +160,9 @@ def uploads():
160
  return None
161
 
162
 
163
- if __name__ == '__main__':
164
- app.run(host= "0.0.0.0", port=8000)
165
-
166
-
167
-
168
-
169
 
170
 
171
 
 
160
  return None
161
 
162
 
163
+ if __name__ == "__main__":
164
+ print("🚀 Starting Flask app...")
165
+ app.run(debug=True, host="0.0.0.0", port=7860)
 
 
 
166
 
167
 
168