Spaces:
Sleeping
Sleeping
Vargock
commited on
Commit
·
795cd36
1
Parent(s):
982913f
Fix host/port for Hugging Face Spaces
Browse files
app.py
CHANGED
|
@@ -40,4 +40,4 @@ def index():
|
|
| 40 |
return render_template("index.html", text=text, summary=summary)
|
| 41 |
|
| 42 |
if __name__ == "__main__":
|
| 43 |
-
app.run(debug=
|
|
|
|
| 40 |
return render_template("index.html", text=text, summary=summary)
|
| 41 |
|
| 42 |
if __name__ == "__main__":
|
| 43 |
+
app.run(host="0.0.0.0", port=7860, debug=False)
|