9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "Applying Prisma schema..."
|
|
npx prisma db push --skip-generate
|
|
|
|
echo "Starting Kita-Planer..."
|
|
exec npm run start:prod
|