Files
boka-gasol247/docker/entrypoint.sh
2026-05-22 10:50:48 +02:00

17 lines
535 B
Bash

#!/bin/sh
set -e
# Sync schema to the mounted SQLite volume. `db push` is fine for a single-tenant
# MVP where we don't need an audit trail of migrations. Switch to `migrate deploy`
# once the schema stabilizes and we want versioned migrations.
echo "→ Running prisma db push"
npx prisma db push --skip-generate --accept-data-loss=false
# Optionally seed when explicitly requested. Idempotent (upsert).
if [ "${RUN_SEED:-false}" = "true" ]; then
echo "→ Running seed"
node --import tsx ./prisma/seed.ts || true
fi
exec "$@"