mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 09:46:39 +02:00
8 lines
181 B
Bash
Executable file
8 lines
181 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
export DIRECT_DATABASE_URL=$DATABASE_URL
|
|
export AUTH_URL=$NEXT_PUBLIC_BASE_URL
|
|
|
|
pnpm prisma migrate deploy --schema=./prisma/schema.prisma
|
|
node apps/web/server.js
|