fix: ensure Postgres init runs so signup and login work#179
Open
Recongohan wants to merge 1 commit intoopen-source-labs:masterfrom
Open
fix: ensure Postgres init runs so signup and login work#179Recongohan wants to merge 1 commit intoopen-source-labs:masterfrom
Recongohan wants to merge 1 commit intoopen-source-labs:masterfrom
Conversation
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.
🔗 Linked issue
Resolves #169
Description
This PR fixes an issue where running docker compose up would start the application, but signup and login failed because the users table was never created.
Root cause
The Postgres init.sql file was not mounted into the Postgres init directory, so schema initialization never ran. The init.sql file also contained schema issues that caused initialization to fail when executed.
Changes
Mounted init.sql into the Postgres init directory in docker compose
Fixed init.sql so required tables are created successfully
Added a README troubleshooting note to help contributors reset local DB state
Testing
Started from a clean local database state
Verified tables using psql
Successfully signed up and logged in on localhost 4000
Checklist