Files
DiunaBI/WebAPI/appsettings.json

26 lines
592 B
JSON
Raw Normal View History

2023-02-22 12:12:38 +01:00
{
"PONG": "#{PING}#",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"SQLDatabase": "#{db-connection-string}#"
},
"GoogleClientId": "#{google-backend-login-client-id}#",
"Secret": "#{google-backend-login-secret}#",
"apiKey": "#{api-key}#",
2023-08-23 17:30:25 +02:00
"exportDirectory": "#{export-directory}#",
2023-08-29 14:55:31 +02:00
"appLogsFile": "#{app-logs-file}#",
2023-02-22 12:12:38 +01:00
"Kestrel": {
"Endpoints": {
"Http": {
2023-08-21 12:30:18 +02:00
"Url": "http://#{api-local-url}#"
2023-02-22 12:12:38 +01:00
}
}
}
}