All checks were successful
Build and deploy / build-deploy (push) Successful in 1m13s
19 lines
722 B
Bash
19 lines
722 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.
|
|
# Invoke prisma directly via the package — .bin/prisma symlink gets dereferenced
|
|
# by Docker COPY which breaks the relative wasm resolution it relies on.
|
|
echo "→ Running prisma db push"
|
|
node ./node_modules/prisma/build/index.js 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 "$@"
|