unoconvert / start.sh
pvanand's picture
Create start.sh
d2ff64e verified
raw
history blame contribute delete
191 Bytes
#!/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