Spaces:
Build error
Build error
File size: 256 Bytes
8297f0d 2b2102f 8297f0d 2b2102f 8297f0d bf1a335 2b2102f 8297f0d bf1a335 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Serve the ollama model in the background
ollama serve &
cd backend
# Start FastAPI app in the background on port 8000
uvicorn app:app --host 0.0.0.0 --port 8000 --workers 1 & echo $! > http_server.pid
# Start Nginx
nginx -g 'daemon off;'
|