12 lines
172 B
Bash
Executable file
12 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
mkdir -p /data
|
|
|
|
cd /app
|
|
|
|
echo "Running database migrations..."
|
|
npx prisma migrate deploy
|
|
|
|
echo "Starting Warmbox API..."
|
|
exec node apps/api/dist/index.js
|