mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-12 05:57:26 +02:00
6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
pnpm prisma generate
|
|
pnpm build
|
|
# Deploy migration using direct database connection (no connection pool)
|
|
DATABASE_URL=$DIRECT_DATABASE_URL pnpm db:deploy
|