Upgrading
Pull the current version:
git pullCheck if dependencies got added/updated/removed
yarnApply database migrations by running one of the following commands:
In a development environment, run:
yarn workspace @calcom/prisma db-migrate(this can clear your development database in some cases)
In a production environment, run:
yarn workspace @calcom/prisma db-deployCheck for .env variables changes
yarn predevStart the server. In a development environment, just do:
yarn devFor a production build, run for example:
yarn build
yarn startEnjoy the new version.
Last updated
Was this helpful?