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