A simple CLI tool that automatically detects your project type and runs the appropriate commands.
- Rails (detects
bin/rails) - Rust (detects
Cargo.toml) - Elixir/Phoenix (detects
mix.exs) - Go (detects
go.mod) - Node.js (detects
package.json)
cargo install devx| Command | Short | Description |
|---|---|---|
devx test |
devx t |
Run tests |
devx lint |
devx l |
Run linter |
devx server |
devx s |
Start development server |
devx install |
devx i |
Install dependencies |
--help,-h- Show help message--version,-v- Show version
cd your-project
devx test # or: devx t
devx lint # or: devx l
devx server # or: devx s
devx install # or: devx i