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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01HHoJpxYXzHACSQguHrC5fw
This commit is contained in:
2026-07-28 00:01:11 +02:00
co-authored by Claude Opus 5
parent 357d395629
commit 589146a167
+2 -2
View File
@@ -18,7 +18,7 @@ Een modulaire monolith CMS gebouwd met .NET 10.
### 1. Database opstarten ### 1. Database opstarten
Start een SQL Server container met de volgende opdracht: Start een SQL Server container met de volgende opdracht:
```powershell ```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=<your_password>" -p 1433:1433 --name sql-server -d mcr.microsoft.com/mssql/server:2022-latest
``` ```
### 2. Configuratie ### 2. Configuratie
@@ -31,7 +31,7 @@ Zorg dat er een `src/SlpModularCms.Api/appsettings.local.json` aanwezig is met d
```json ```json
{ {
"ConnectionStrings": { "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=<your_password>;Database=SlpModularCms;TrustServerCertificate=True;MultipleActiveResultSets=true"
} }
} }
``` ```