mirror of
https://github.com/wahyd4/you-music.git
synced 2026-08-08 20:59:47 +10:00
15 lines
311 B
Bash
Executable File
15 lines
311 B
Bash
Executable File
#!/bin/bash
|
|
# Startup script that runs migrations then starts the app
|
|
|
|
set -e
|
|
|
|
echo "🔄 Running database migrations..."
|
|
cd /app/backend
|
|
alembic upgrade head
|
|
|
|
echo "✅ Migrations complete!"
|
|
echo "🚀 Starting YouMusic application..."
|
|
|
|
# Start the application
|
|
exec uvicorn main:app --host 0.0.0.0 --port 8000
|