- 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
258 B
JSON
11 lines
258 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Warning",
|
|
"Microsoft.AspNetCore": "Error"
|
|
}
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Host=prod-db;Port=5432;Database=DeutschLernen;Username=postgres;Password=${DB_PASSWORD}"
|
|
}
|
|
}
|