The manage CLI
One binary: HTTP server plus every management verb.
manage::Cli dispatches a single binary to either the HTTP server (runserver) or a management verb. Built-in verbs cover migrations, scaffolding, and tenancy/user management.
cargo run # runserver
cargo run -- migrate
cargo run -- makemigrations
cargo run -- startapp blog # scaffold an app module
cargo run -- create-admin # bootstrap a superuser
cargo run -- create-tenant acme --host-pattern acme.example.com
New in 0.42
cargo rustango new scaffolds a ready-to-run project with the unified manage binary.