Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 918 Bytes

README.md

File metadata and controls

50 lines (31 loc) · 918 Bytes

devx

cli for automating my dev workflows. built in pure rust 🦀

devx

install:

  1. 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
  2. run devx help to verify installation and list available commands

  3. run devx manage uninstall to remove devx

development:

pre-requisites:

  1. install rust

  2. setup project:

    make init

getting started:

  1. run code ci checks (formatting & linting):

    make ci
  2. test changes:

    make install
  3. clean up:

    make clean