elsa-core/samples/aspnet/Elsa.Samples.AspNet.Webhooks.WorkflowServer/appsettings.json

20 lines
315 B
JSON
Raw Normal View History

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Debug"
}
},
"AllowedHosts": "*",
"Webhooks": {
"Endpoints": [
{
"EventTypes": [
"RunTask"
],
"Url": "https://localhost:5002/webhooks/run-task"
}
]
}
}