Psyched to have a Scylla ORM (kinda?)
Install Rust with rustup.
For helpful linting rools, install Clippy with rustup
:
rustup component add clippy
Run it with cargo
:
cargo clippy --fix
To build scripts from the Makefile.toml, install Cargo Make:
cargo install cargo-make
Run "setup" to install some tooling dependencies:
cargo make setup
See .env.example
To run the Compose formation with just the supporting services needed to run cargo make dev
:
docker compose up -d
To shut it down:
docker compose down
Use cargo
to run the dev server locally:
cargo make dev
First, install the outdated
command for cargo
:
cargo install --locked cargo-outdated
Then, update and check for any major dependency changes:
cargo update
cargo outdated