Skip to content

Commit 7c4f071

Browse files
Lasse Benningaclaude
andcommitted
fix(week11): clarify .env.example placeholder and add sslmode
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 (line 69) and how Azure Postgres is meant to be reached. Neither change caused the reported "relation dev_<name>.fct_trips does not exist" error (that was a wrong database in a student's own .env), but both remove a foot-gun and keep the example self-consistent. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 0a5b1b1 commit 7c4f071

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

week11-streamlit/.env.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# PostgreSQL connection string (your Week 9/10 login)
2-
POSTGRES_URL=postgresql://pipeline_user:your-pg-password@your-pg-host:5432/team1
2+
# Keep the database name as team1 and the ?sslmode=require suffix; only swap
3+
# in your own user, password, and host.
4+
POSTGRES_URL=postgresql://your-pg-user:your-pg-password@your-pg-host:5432/team1?sslmode=require
35
# Your dev schema name (e.g. dev_jana)
46
DB_SCHEMA=dev_yourname

0 commit comments

Comments
 (0)