Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hssling
/
cardioai-api
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hssling
commited on
10 days ago
Commit
f506aeb
·
1 Parent(s):
87d8887
Fix Gradio connection crash loop by enforcing 0.0.0.0 bind host
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -78,4 +78,4 @@ demo = gr.Interface(
78
)
79
80
if __name__ == "__main__":
81
-
demo.launch(
share
=
False
)
78
)
79
80
if __name__ == "__main__":
81
+
demo.launch(
server_name
=
"0.0.0.0", server_port=7860
)