Files
flatrender/services/content/FlatRender.ContentSvc/appsettings.Development.json.example
T

20 lines
532 B
JSON
Raw Normal View History

{
"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"
}
}
}