9 lines
129 B
Bash
9 lines
129 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Running database migrations..."
|
|
npx prisma migrate deploy
|
|
|
|
echo "Starting application..."
|
|
exec npm start
|