Feature/gitea deployment workflow #1
@@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user