9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
echo "Applying database migrations..."
|
|
npx prisma migrate deploy
|
|
|
|
echo "Starting NestJS..."
|
|
exec node dist/main.js
|