File size: 215 Bytes
333c51a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Initialize database if it doesn't exist
if [ ! -f /app/data/sofia.db ]; then
    echo "Initializing database..."
    cd /app && bunx prisma db push --skip-generate
fi

# Start the application
exec "$@"