From 589146a16761637f037ed286d0cbe01d300b7e6c Mon Sep 17 00:00:00 2001 From: Sluijsens Date: Tue, 28 Jul 2026 00:01:11 +0200 Subject: [PATCH] Removes the sample database password from the README Replaces the literal SA password in the container command and the example connection string with a placeholder. This change was already in the working tree at the start of the session and is unrelated to the deployment feature; it is committed separately so it stays easy to identify. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01HHoJpxYXzHACSQguHrC5fw --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 337c4c0..37bb3fa 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Een modulaire monolith CMS gebouwd met .NET 10. ### 1. Database opstarten Start een SQL Server container met de volgende opdracht: ```powershell -podman run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=MSSQL_s3cr3t_pw!" -p 1433:1433 --name sql-server -d mcr.microsoft.com/mssql/server:2022-latest +podman run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=" -p 1433:1433 --name sql-server -d mcr.microsoft.com/mssql/server:2022-latest ``` ### 2. Configuratie @@ -31,7 +31,7 @@ Zorg dat er een `src/SlpModularCms.Api/appsettings.local.json` aanwezig is met d ```json { "ConnectionStrings": { - "DefaultConnection": "Server=127.0.0.1,1433;User ID=sa;Password=MSSQL_s3cr3t_pw!;Database=SlpModularCms;TrustServerCertificate=True;MultipleActiveResultSets=true" + "DefaultConnection": "Server=127.0.0.1,1433;User ID=sa;Password=;Database=SlpModularCms;TrustServerCertificate=True;MultipleActiveResultSets=true" } } ```