Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pvanand
/
unoconvert
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ffc414e
unoconvert
/
start.sh
pvanand
Create start.sh
d2ff64e
verified
2 months ago
raw
Copy download link
history
blame
Safe
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