Files
lct2025-lonolith/LctMonolith/appsettings.Development.json

36 lines
1.0 KiB
JSON

{
"ConnectionStrings": {
"Default": "Host=postgres;Port=5432;Database=lct2025_dev;Username=postgres;Password=postgres"
},
"Jwt": {
"Key": "Dev_Insecure_Key_Change_Me",
"Issuer": "LctMonolith",
"Audience": "LctMonolithAudience",
"AccessTokenMinutes": 120,
"RefreshTokenDays": 7
},
"Serilog": {
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File", "Serilog.Sinks.Debug" ],
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"WriteTo": [
{ "Name": "Console" },
{ "Name": "Debug" },
{ "Name": "File", "Args": { "path": "Logs/dev-log-.txt", "rollingInterval": "Day", "shared": true } }
],
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
"Properties": { "Application": "LctMonolith" }
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}