Files
calendar/scripts/start.sh
T
Zachariah K. Sharma 08088b1dad
Create PR containing updated CHANGELOG.md and release packages to NPM once PR is merged / Release (push) Has been cancelled
Run i18n AI automation / Run i18n (push) Has been cancelled
Next.js Bundle Analysis / analyze (push) Has been cancelled
Slim production Docker runtime
2026-06-07 22:38:36 -06:00

11 lines
463 B
Bash

#!/bin/sh
set -x
# Replace the statically built BUILT_NEXT_PUBLIC_WEBAPP_URL with run-time NEXT_PUBLIC_WEBAPP_URL
# NOTE: if these values are the same, this will be skipped.
scripts/replace-placeholder.sh "$BUILT_NEXT_PUBLIC_WEBAPP_URL" "$NEXT_PUBLIC_WEBAPP_URL"
scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
/migrate/node_modules/.bin/prisma migrate deploy --schema /calcom/packages/prisma/schema.prisma
exec node /calcom/apps/web/server.js