6 lines
119 B
Bash
Executable File
6 lines
119 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
echo "Running Prisma migrations..."
|
|
npx prisma migrate deploy
|
|
echo "Starting Next.js..."
|
|
npm run start |