cli for automating my dev workflows. built in pure rust 🦀
-
run the following command to install devx (note: requires
curl
and sudo access):curl -sSL https://raw.githubusercontent.com/ajndkr/devx/main/install.sh -o install.sh \ && sh install.sh && rm install.sh
-
run
devx help
to verify installation and list available commands -
run
devx manage uninstall
to remove devx
-
install rust
-
setup project:
make init
-
run code ci checks (formatting & linting):
make ci
-
test changes:
make install
-
clean up:
make clean