- Replace SQLite with Npgsql provider - Update Program.cs to use UseNpgsql - Add connection strings to appsettings files - Create appsettings.Staging.json and appsettings.Production.json Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
11 lines
267 B
JSON
11 lines
267 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Host=staging-db;Port=5432;Database=DeutschLernen;Username=postgres;Password=${DB_PASSWORD}"
|
|
}
|
|
}
|