fix(week11): clarify .env.example placeholder and add sslmode - #9
Merged
Conversation
Rename the misleading `pipeline_user` placeholder to `your-pg-user`: students' actual Week 9/10 logins are their own names, and a student who keeps `pipeline_user` verbatim hits an auth failure. Also append `?sslmode=require` so the example matches what the README already instructs and how Azure Postgres is meant to be reached. Mirrors HackYourFuture/data-assignment-week-11#8. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
Situation
A student in this cohort hit
relation "dev_<name>.fct_trips" does not existon the Week 11 Streamlit dashboard. Their marts existed and were readable; the real cause was a wrong database/host in their own.env, not the starter template.Problem
The template did not cause that error, but
week11-streamlit/.env.examplehas two small foot-guns:pipeline_userclashes with the comment "your Week 9/10 login" (students' logins are their own names). Keeping it verbatim gives an auth failure.?sslmode=require, though the README already instructs students to include it.Solution
Rename
pipeline_user→your-pg-user, append?sslmode=require, and add a one-line comment to keepteam1and the sslmode suffix. No autograder dependency on the old string. Mirrors HackYourFuture/data-assignment-week-11#8.🤖 Generated with Claude Code