https://github.com/johnbcodes/sqlite-es
An SQLite implementation of a cqrs event store.
https://github.com/johnbcodes/sqlite-es
Last synced: 3 months ago
JSON representation
An SQLite implementation of a cqrs event store.
- Host: GitHub
- URL: https://github.com/johnbcodes/sqlite-es
- Owner: johnbcodes
- License: other
- Created: 2022-11-15T01:09:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-29T13:17:59.000Z (5 months ago)
- Last Synced: 2025-04-10T02:15:02.265Z (3 months ago)
- Language: Rust
- Size: 44.9 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# sqlite-es
> An SQLite implementation of the `PersistedEventRepository` trait in cqrs-es.
[](https://github.com/johnbcodes/sqlite-es/actions/workflows/ci.yml)
[](https://crates.io/crates/sqlite-es)
[](https://docs.rs/sqlite-es)---
## Usage
Add to your Cargo.toml file:```toml
[dependencies]
cqrs-es = "0.4.5"
sqlite-es = "0.4.5"
```A simple configuration example:
```
let store = default_sqlite_pool("sqlite://my.db");
let cqrs = sqlite_es::sqite_cqrs::(pool, vec![], ())
```Things that could be helpful:
- [User guide](https://doc.rust-cqrs.org) along with an introduction to CQRS and event sourcing.
- [Demo application](https://github.com/johnbcodes/cqrs-es-demo-sqlite) using [axum](https://github.com/tokio-rs/axum) web application framework.