dotnet-cqrs/docs/samples/configuration-examples.md

561 B

Configuration Examples

Common appsettings.json configurations.

Event Streaming

{
  "EventStreaming": {
    "PostgreSQL": {
      "ConnectionString": "Host=localhost;Database=eventstore;Username=postgres;Password=postgres"
    },
    "ConsumerGroups": {
      "Enabled": true,
      "HeartbeatInterval": "00:00:10",
      "SessionTimeout": "00:00:30"
    }
  }
}

Logging

{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Svrnty.CQRS": "Debug"
    }
  }
}

See Also