Spaces:
Build error
Build error
Create a new app-network version
Browse files- app-local.py +2 -2
- app-network.py +3 -0
app-local.py
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
-
# Run the app with no audio file restrictions
|
| 2 |
from app import createUi
|
| 3 |
-
createUi(-1
|
|
|
|
| 1 |
+
# Run the app with no audio file restrictions
|
| 2 |
from app import createUi
|
| 3 |
+
createUi(-1)
|
app-network.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Run the app with no audio file restrictions, and make it available on the network
|
| 2 |
+
from app import createUi
|
| 3 |
+
createUi(-1, server_name="0.0.0.0")
|