mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
8 lines
301 B
Bash
Executable File
8 lines
301 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Running Beanie migrations..."
|
|
beanie migrate -uri "${MONGO_URI:-$mongo_uri}" -db mediafusion -p migrations/
|
|
|
|
echo "Starting FastAPI server..."
|
|
gunicorn api.main:app -w 4 -k uvicorn.workers.UvicornWorker --bind 0.0.0.0:8000 --timeout 120 --max-requests 500 --max-requests-jitter 200
|