From 8a832a580f2d2e230e5d9c5911fa85208b4c1612 Mon Sep 17 00:00:00 2001 From: Robert Friberg Date: Mon, 30 Jun 2014 11:36:44 +0200 Subject: [PATCH] Create README.md --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md 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")); +```