aadnk commited on
Commit
08d2e96
1 Parent(s): d5154e9

Create a new app-network version

Browse files
Files changed (2) hide show
  1. app-local.py +2 -2
  2. app-network.py +3 -0
app-local.py CHANGED
@@ -1,3 +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")
 
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")