* Replace custom webhooks implementation with WebhooksCore Replaced the existing custom webhooks registration and dispatching system with the WebhooksCore library. This involved removing all previous custom webhook classes and interfaces, updating project dependencies, and modifying appsettings and program files to use the new configuration. The update simplifies the webhook handling architecture and leverages the features provided by WebhooksCore. * Hide API key in Datadog Docker compose file This change replaces the exposed Datadog API key with a placeholder "<HIDDEN>". This enhances security by preventing the API key from being visible in the version control system.
23 lines
366 B
JSON
23 lines
366 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Debug"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Webhooks": {
|
|
"Sinks": [
|
|
{
|
|
"Id": "1",
|
|
"Filters": [
|
|
{
|
|
"EventType": "RunTask"
|
|
}
|
|
],
|
|
"Url": "https://localhost:5002/webhooks/run-task"
|
|
}
|
|
]
|
|
}
|
|
}
|