Spaces:
Sleeping
Sleeping
Update port and app being open to every connection
Browse files
README.md
CHANGED
@@ -6,7 +6,7 @@ colorTo: indigo
|
|
6 |
sdk: docker
|
7 |
app_file: app.py
|
8 |
pinned: true
|
9 |
-
app_port:
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
6 |
sdk: docker
|
7 |
app_file: app.py
|
8 |
pinned: true
|
9 |
+
app_port: 7860
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
main.py
CHANGED
@@ -272,4 +272,4 @@ with gr.Blocks(
|
|
272 |
)
|
273 |
|
274 |
demo.queue(concurrency_count=3)
|
275 |
-
demo.launch(server_port=7860)
|
|
|
272 |
)
|
273 |
|
274 |
demo.queue(concurrency_count=3)
|
275 |
+
demo.launch(server_port=7860, server_name="0.0.0.0")
|