The official CLI for scaffolding and managing Aevix projects. Built in Rust — fast startup, zero runtime dependency, ships as a single binary.
# cargo
cargo install aevix-cli
# bun
bun add -g aevix-cli
# or download a prebuilt binary from GitHub Releases
curl -fsSL https://github.com/aevix/cli/releases/latest/download/install.sh | shScaffold a new Aevix project.
aevix create my-sitePrompts for:
- Database (PostgreSQL, MySQL, SQLite)
- Auth providers
- Starter plugins (blog, SEO...)
- Deploy target (Cloudflare, Bun, Node.js)
Add a plugin to an existing project.
aevix add plugin-blog
aevix add plugin-seo
aevix add plugin-shopRun Prisma migrations and regenerate types after schema changes.
aevix generateStart the development server.
aevix devgit clone https://github.com/aevix/cli
cd cli
cargo build --release
./target/release/aevix --versionMIT