6 lines
167 B
Bash
Executable file
6 lines
167 B
Bash
Executable file
#!/bin/sh
|
|
set -x
|
|
|
|
scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "database is up"
|
|
npx prisma migrate deploy --schema /calcom/packages/prisma/schema.prisma
|
|
yarn start
|