mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-11 12:25:36 +02:00
10 lines
No EOL
215 B
Bash
10 lines
No EOL
215 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Run migrations explicitly using the npm script, forcing changes
|
|
echo "Running database migrations..."
|
|
npm run db:push -- --force
|
|
|
|
# Start the application
|
|
echo "Starting application..."
|
|
exec "$@" |