All checks were successful
Build & Deploy / build (push) Successful in 1m22s
8 lines
161 B
Bash
8 lines
161 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "🔄 Running database migrations..."
|
|
./node_modules/.bin/prisma migrate deploy
|
|
|
|
echo "🚀 Starting SlaapKampioen..."
|
|
exec node server.js |