mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
12 lines
201 B
Bash
12 lines
201 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cd /app
|
|
|
|
# npm run executes the same package.json scripts as pnpm run (pnpm reinstalls in deploy layout)
|
|
npm run prisma:generate
|
|
npm run prisma:migrate
|
|
npm run prisma:seed
|
|
|
|
exec "$@"
|