2
0
Files
bot/scripts/builder-entrypoint.sh
2023-08-28 09:13:53 +02:00

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;