mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-19 21:04:33 +08:00
15 lines
332 B
Bash
15 lines
332 B
Bash
#!/bin/bash
|
|
|
|
echo $DATABASE_URL;
|
|
|
|
cd apps/builder;
|
|
node -e "const { configureRuntimeEnv } = require('next-runtime-env/build/configure'); configureRuntimeEnv();"
|
|
cd ../..;
|
|
|
|
echo 'Waiting 5s for db to be ready...';
|
|
sleep 5;
|
|
|
|
pnpm prisma migrate deploy --schema=packages/prisma/postgresql/schema.prisma;
|
|
|
|
|
|
node apps/builder/server.js; |