https://github.com/arve0/build-your-own-couchdb
Build your own modern CouchDB with Rust
https://github.com/arve0/build-your-own-couchdb
Last synced: 21 days ago
JSON representation
Build your own modern CouchDB with Rust
- Host: GitHub
- URL: https://github.com/arve0/build-your-own-couchdb
- Owner: arve0
- Created: 2019-08-02T12:02:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-11T22:22:42.000Z (over 1 year ago)
- Last Synced: 2025-04-07T23:02:15.943Z (about 2 months ago)
- Language: Rust
- Homepage: https://arve0.github.io/build-your-own-couchdb/
- Size: 705 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build your own modern CouchDB with Rust
Read book at https://arve0.github.io/build-your-own-couchdb/.## Writing
Edit book inside [src](./src/) and code inside [sakkosekk](./sakkosekk/).Build HTML with [mdbook](https://github.com/rust-lang-nursery/mdBook):
```sh
cargo install mdbook
mdbook build
```## Development
Make sure you have [Rust installed](https://rustup.rs). Source is in [sakkosekk](./sakkosekk/):```sh
cd sakkosekk
```### Tests
```sh
cargo test
```### Benchmarks
See benchmarks in [benches](./sakkosekk/benches/).
```sh
cargo bench
```### Running
```sh
cargo run
```### Building release
```sh
cargo build --release
```Binary in `./target/release/`:
```sh
./target/release/sakkosekk
```