Files
flatrender/services/identity/FlatRender.IdentitySvc/appsettings.Development.json.example
T

20 lines
567 B
JSON
Raw Normal View History

{
"ConnectionStrings": {
"DefaultConnection": "Host=localhost;Port=5432;Database=flatrender;Username=svc_identity;Password=YOUR_PASSWORD;SearchPath=identity,public"
},
"Jwt": {
"Secret": "YOUR_JWT_SECRET_AT_LEAST_32_CHARS_LONG_HERE",
"Issuer": "flatrender-identity",
"Audience": "flatrender",
"AccessTokenMinutes": "15",
"RefreshTokenDays": "30"
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information",
"Microsoft.EntityFrameworkCore.Database.Command": "Information"
}
}
}