From 8660118fb659fdd8aa909af0ea3f9cfb50f8574d Mon Sep 17 00:00:00 2001 From: kostiantyn-matsebora Date: Fri, 29 Nov 2024 21:30:54 +0200 Subject: [PATCH] Update documentation --- docs/README.md | 5 +++-- src/StreamStore.NoSql.Cassandra/README.md | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 78fc60d..4e6f799 100644 --- a/docs/README.md +++ b/docs/README.md @@ -58,12 +58,13 @@ Also add implementations of particular storage, such as: - [x] [`PostgreSQL`](https://www.postgresql.org/) - [ ] [`Azure SQL`](https://azure.microsoft.com/en-us/services/sql-database/) - [ ] [`MySQL`](https://www.mysql.com/) -- [ ] [`NoSQL`] based DBMS: +- [x] [`NoSQL`] based DBMS: - [x] [`Apache Cassandra`] - [x] [`Azure Cosmos DB for Apache Cassandra`] ## Roadmap +- [ ] Composite stream identifier - [ ] Custom event properties (?). - [ ] External transaction support (?). - [ ] Transactional outbox pattern implementation (?). @@ -201,7 +202,7 @@ Example projects provides a simple console application that demonstrates how to For getting all running options simply run the application with `--help` argument. -For configuring application via configuration file, create `appsettings.Debug.json` file. +For configuring application via configuration file, create `appsettings.Development.json` file. ## Create your own storage implementation diff --git a/src/StreamStore.NoSql.Cassandra/README.md b/src/StreamStore.NoSql.Cassandra/README.md index f807630..3c1502f 100644 --- a/src/StreamStore.NoSql.Cassandra/README.md +++ b/src/StreamStore.NoSql.Cassandra/README.md @@ -102,6 +102,7 @@ How to use [StreamStore] in your application code you can find on StreamStore [p ## Example You can find an example of usage in the [StreamStore.NoSql.Example](https://github.com/kostiantyn-matsebora/streamstore/tree/master/src/StreamStore.NoSql.Example) project. +More informatio about how example application works you can find in [StreamStore](https://github.com/kostiantyn-matsebora/streamstore/tree/master/#example) documentation. ### Testing