Spaces:
Sleeping
Sleeping
File size: 229 Bytes
a61be63 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
# Install dependencies
pip install -r requirements.txt
# Run Django migrations
python manage.py migrate
# Run FastAPI app
uvicorn router:router --host 0.0.0.0 --port 8000 &
# Run Gradio app
python gradio_app.py &
|