Installation
Install the toolchain and scaffold a project.
Install the toolchain
rustango targets stable Rust 1.88+. Install Rust with rustup, then add the project scaffolder:
cargo install cargo-rustango
cargo rustango new myapp
cd myapp
New in 0.42
cargo rustango new ships the unified manage binary by default.
Database
Postgres is the default backend. For a zero-setup start, enable the sqlite feature and point DATABASE_URL at a file.
Run it
cargo run -- migrate
cargo run
Next: Quickstart