13 lines
262 B
Bash
Executable File
13 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
corepack enable
|
|
corepack prepare pnpm@10.16.1 --activate
|
|
pnpm install --frozen-lockfile
|
|
|
|
if [[ -n "${DATABASE_URL:-}" ]]; then
|
|
pnpm --filter @workspace/db run push
|
|
else
|
|
echo "DATABASE_URL is not set; skipping database push"
|
|
fi
|