fix(dx): align local Postgres DB defaults with DATABASE_URL (#28106)#28211
Closed
deepshekhardas wants to merge 3 commits intocalcom:mainfrom
Closed
fix(dx): align local Postgres DB defaults with DATABASE_URL (#28106)#28211deepshekhardas wants to merge 3 commits intocalcom:mainfrom
deepshekhardas wants to merge 3 commits intocalcom:mainfrom
Conversation
…8106) Change POSTGRES_DB from 'cal-saml' to 'calendso' in packages/prisma/docker-compose.yml to match the default DATABASE_URL in the .env template. This ensures that \yarn workspace @calcom/prisma dx\ works out-of-the-box without manual configuration.
Member
sahitya-chandra
left a comment
There was a problem hiding this comment.
Duplicate pr #28236. Closing this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Fix: Align local Postgres DB defaults (
POSTGRES_DBvsDATABASE_URL) (#28106)Problem:
Running
yarn workspace @calcom/prisma dxspins up a local Postgres Docker container with the default database namecal-saml, while the app's.env.exampleand maindocker-compose.ymlpoint tocalendso. This mismatch causes connection errors during local onboarding on clean volumes.Changes:
POSTGRES_DBinpackages/prisma/docker-compose.ymltocalendsoto match the.envdefault.How should this be tested?
yarn workspace @calcom/prisma db-nuke.yarn workspace @calcom/prisma dx.calendsoand the application connects cleanly via the defaultDATABASE_URL.Fixes #28106