gabriel / musehub public
entrypoint.sh bash
13 lines 247 B
b2e329a1 dev → main: uvicorn workers, nginx push timeout, MCP tool descriptions (#32) Gabriel Cardona <cgcardona@gmail.com> 2d ago
1 #!/bin/sh
2 set -e
3
4 echo "Running database migrations..."
5 alembic upgrade head
6
7 echo "Starting MuseHub..."
8 exec uvicorn musehub.main:app \
9 --host 0.0.0.0 \
10 --port 10003 \
11 --workers 4 \
12 --proxy-headers \
13 --forwarded-allow-ips='*'