luulinh90s
commited on
Commit
•
b314c6f
1
Parent(s):
2d393de
update
Browse files
app.py
CHANGED
@@ -287,6 +287,9 @@ app = Flask(__name__)
|
|
287 |
def index():
|
288 |
return "Hello, world!"
|
289 |
|
290 |
-
if __name__ == '__main__':
|
291 |
-
|
|
|
|
|
|
|
292 |
|
|
|
287 |
def index():
|
288 |
return "Hello, world!"
|
289 |
|
290 |
+
# if __name__ == '__main__':
|
291 |
+
# app.run(debug=False, port=7860)
|
292 |
+
|
293 |
+
if __name__ == "__main__":
|
294 |
+
app.run(host="0.0.0.0", port=7860)
|
295 |
|