Spaces:
Running
Running
File size: 191 Bytes
d2ff64e |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash
# Start unoserver in the background
unoserver --interface 0.0.0.0 &
# Wait for unoserver to start
sleep 5
# Start FastAPI application
uvicorn app:app --host 0.0.0.0 --port 7860 |