Upgrading
Warning: When performing database migrations, you may lose data if the migration is not done properly.
-
Pull the current version:
git pull -
Apply 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-deploy -
Check the
.env.exampleand compare it to your current.envfile. In case there are any fields not present in your current.env, add them there.For the current version, especially check if the variable
BASE_URLis present and properly set in your environment, for example:BASE_URL='https://yourdomain.com' -
Start the server. In a development environment, just do:
yarn devFor a production build, run for example:
yarn build yarn start -
Enjoy the new version.