diff --git a/README.md b/README.md new file mode 100644 index 0000000..999b9d1 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +Modules.EventStore +================== + +EventStore command logging for OrigoDB + + +Example for eventstore tcp running on localhost and port 1113: + +```csharp + var config = EngineConfiguration.Create(); + var endPoint = new IPEndPoint(IPAddress.LoopBack, 1113); + config.SetCommandStoreFactory(cfg => new ESCommandStore(cfg, endPoint, "my-stream")); +```