tuna2134
commited on
Commit
•
ca027c3
1
Parent(s):
f23f30f
fixed
Browse files
README.md
CHANGED
@@ -7,6 +7,7 @@ sdk: docker
|
|
7 |
app_file: app.py
|
8 |
pinned: false
|
9 |
license: mit
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
7 |
app_file: app.py
|
8 |
pinned: false
|
9 |
license: mit
|
10 |
+
app_port: 7860
|
11 |
---
|
12 |
|
13 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -23,4 +23,4 @@ gradio_app = gr.Interface(
|
|
23 |
)
|
24 |
|
25 |
if __name__ == "__main__":
|
26 |
-
gradio_app.launch()
|
|
|
23 |
)
|
24 |
|
25 |
if __name__ == "__main__":
|
26 |
+
gradio_app.launch(server_name="0.0.0.0")
|