gabriel / musehub public
entrypoint.sh bash
12 lines 229 B
7f1d07e8 feat: domains, MCP expansion, MIDI player, and production hardening (#8) Gabriel Cardona <cgcardona@gmail.com> 4d 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 --proxy-headers \
12 --forwarded-allow-ips='*'