mirror of
https://github.com/xCyanGrizzly/DragonsStash.git
synced 2026-05-10 22:01:16 +00:00
14 lines
260 B
Bash
14 lines
260 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
npx prisma migrate deploy
|
|
|
|
if [ "$SEED_DATABASE" = "true" ]; then
|
|
echo "Seeding database..."
|
|
npx prisma db seed || echo "Seeding skipped or already done."
|
|
fi
|
|
|
|
echo "Starting application..."
|
|
exec "$@"
|