20 lines
532 B
JSON
20 lines
532 B
JSON
|
|
{
|
||
|
|
"ConnectionStrings": {
|
||
|
|
"Postgres": "Host=localhost;Port=5432;Database=flatrender;Username=postgres;Password=postgres;Search Path=content,public"
|
||
|
|
},
|
||
|
|
"Jwt": {
|
||
|
|
"Secret": "your-256-bit-secret-key-change-in-production",
|
||
|
|
"Issuer": "flatrender",
|
||
|
|
"Audience": "flatrender",
|
||
|
|
"AccessTokenExpiryMinutes": 15,
|
||
|
|
"RefreshTokenExpiryDays": 30
|
||
|
|
},
|
||
|
|
"Logging": {
|
||
|
|
"LogLevel": {
|
||
|
|
"Default": "Debug",
|
||
|
|
"Microsoft.AspNetCore": "Information",
|
||
|
|
"Microsoft.EntityFrameworkCore": "Information"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|