Spaces:
Paused
Paused
Update entrypoint.sh
Browse files- entrypoint.sh +4 -6
entrypoint.sh
CHANGED
|
@@ -1,10 +1,8 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
# For robust production you would use a process manager like supervisord.
|
| 5 |
|
| 6 |
-
# Start agents in background
|
| 7 |
python -u agents/worker.py &
|
| 8 |
|
| 9 |
-
|
| 10 |
uvicorn app:app --host 0.0.0.0 --port 7860 --reload
|
|
|
|
| 1 |
+
!/usr/bin/env bash
|
| 2 |
+
|
| 3 |
+
|
|
|
|
| 4 |
|
|
|
|
| 5 |
python -u agents/worker.py &
|
| 6 |
|
| 7 |
+
|
| 8 |
uvicorn app:app --host 0.0.0.0 --port 7860 --reload
|