Files
DiunaBI/WebAPI/appsettings.json

24 lines
476 B
JSON
Raw Normal View History

2022-12-06 12:27:09 +01:00
{
2023-01-06 18:36:24 +01:00
"PONG": "#{PING}#",
2022-12-06 12:27:09 +01:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
2023-01-07 13:12:35 +01:00
"SQLDatabase": "#{db-connection-string}#"
2022-12-06 12:27:09 +01:00
},
2023-01-07 13:12:35 +01:00
"GoogleClientId": "#{google-backend-login-client-id}#",
"Secret": "#{google-backend-login-secret}#",
"apiKey": "#{api-key}#",
2022-12-06 14:35:21 +01:00
"Kestrel": {
"Endpoints": {
"Http": {
2023-01-07 13:12:35 +01:00
"Url": "#{api-local-url}#"
2022-12-06 14:35:21 +01:00
}
}
}
2022-12-06 12:27:09 +01:00
}