30 lines
571 B
Markdown
30 lines
571 B
Markdown
## Storage Engine Playground
|
|
|
|
This repo is a playground for running small experiments related to storage side of things.
|
|
|
|
### Development
|
|
|
|
```sh
|
|
# Clone the repo with submodules
|
|
git clone --recursive git@code.obsidian.systems:habedi-work/storage-engine-playground.git
|
|
```
|
|
|
|
```sh
|
|
# Enter the development environment
|
|
nix develop
|
|
```
|
|
|
|
#### Makefile Targets
|
|
|
|
```sh
|
|
make format # Format Rust code
|
|
make lint # Run linter checks
|
|
make test # Run tests
|
|
```
|
|
|
|
Run `make help` to see all the available targets.
|
|
|
|
### Crates
|
|
|
|
Check out the [crates](crates) directory for more details.
|