From bfa80f3e8a775a6631551e4c4365b1f16286b064 Mon Sep 17 00:00:00 2001 From: Lasse Benninga Date: Wed, 15 Jul 2026 08:43:01 +0200 Subject: [PATCH] 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 and how Azure Postgres is meant to be reached. Mirrors HackYourFuture/data-assignment-week-11#8. Co-Authored-By: Claude Fable 5 --- week11-streamlit/.env.example | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/week11-streamlit/.env.example b/week11-streamlit/.env.example index 9d5542e..810f19b 100644 --- a/week11-streamlit/.env.example +++ b/week11-streamlit/.env.example @@ -1,4 +1,6 @@ # PostgreSQL connection string (your Week 9/10 login) -POSTGRES_URL=postgresql://pipeline_user:your-pg-password@your-pg-host:5432/team1 +# Keep the database name as team1 and the ?sslmode=require suffix; only swap +# in your own user, password, and host. +POSTGRES_URL=postgresql://your-pg-user:your-pg-password@your-pg-host:5432/team1?sslmode=require # Your dev schema name (e.g. dev_jana) DB_SCHEMA=dev_yourname