18 lines
431 B
JSON
18 lines
431 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "Data Source=Application.db"
|
|
},
|
|
"JwtSettings": {
|
|
"SecretKey": "sigma_super_secret_key_for_jwt_tokens_yo_that_should_be_stored_in_ENV",
|
|
"Issuer": "SurveyBackend",
|
|
"Audience": "SurveyClient",
|
|
"ExpiresInMinutes": 600
|
|
}
|
|
}
|