Files
DiunaBI/WebAPI/appsettings.json

31 lines
808 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}#",
2024-06-06 20:25:20 +02:00
"powerBI-user": "#{powerBI-user}#",
"powerBI-pass": "#{powerBI-pass}#",
2023-09-01 18:23:53 +02:00
"exportDirectory": "#{export-directory}#",
2023-08-29 14:55:31 +02:00
"appLogsFile": "#{app-logs-file}#",
2023-08-30 23:11:40 +02:00
"apiLocalUrl": "#{api-local-url}#",
2023-09-01 18:39:13 +02:00
"dbBackupFile": "#{db-backup-file}#",
"GDriveBackupDirectory": "#{gdrive-backup-directory}#",
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
}
}
}
}