Spaces:
Running
Running
Update start.sh
Browse files
start.sh
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
-
# Launch the Uvicorn server, pointing to the 'app' object
|
4 |
-
#
|
5 |
-
# The port should match the one exposed in your Dockerfile and README.md.
|
6 |
uvicorn app.main:app --host 0.0.0.0 --port 7860
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
+
# Launch the Uvicorn server, pointing to the final 'app' object (which is the
|
4 |
+
# Socket.IO wrapper) in the 'app/main.py' module.
|
|
|
5 |
uvicorn app.main:app --host 0.0.0.0 --port 7860
|