line-gestao-api/appsettings.Development.json

36 lines
804 B
JSON

{
"ConnectionStrings": {
"Default": "Host=localhost;Port=5432;Database=linegestao;Username=linegestao_app;Password=255851Ed@"
},
"Jwt": {
"Key": "dev-only-please-replace-with-env-variable-in-production",
"Issuer": "LineGestao",
"Audience": "LineGestao",
"ExpiresMinutes": 360
},
"Cors": {
"AllowedOrigins": [
"http://localhost:4200"
]
},
"App": {
"UseHttpsRedirection": false
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Notifications": {
"CheckIntervalMinutes": 60,
"ReminderDays": [30, 15, 7]
},
"Seed": {
"DefaultTenantName": "Default",
"AdminName": "Administrador",
"AdminEmail": "admin@linegestao.local",
"AdminPassword": "Admin123!"
}
}