This CLI is for some of the global RAN operations such as authentication through the terminal that are not necessarily needed if one were to be a consumer of the RAN the library.
For now, its purpose is for opening and closing receiver servers for auth through terminal, but it is also gonna be used as a global RAN CLI (project agnostic) so you can literally use it like an npx
(or in this case, px)
NOTE: This is designed to be installed GLOBALLY (e.g. via pipx
or pixi global
). This is so that users need only install it on their system one time and that's it.
pipx install ranlibx
ranx --help
Prequisites: you must have pixi and pipelight installed.
# Install dependencies
pixi install -e dev
pixi run -e dev setup # This just runs `pipelight enable git-hooks` WHICH IS MANDATORY
# If you want to access the shell, similar to `micromamba activate` or `conda activate` (highly recommended during development)
pixi shell --change-ps1=false -e dev
To do releases:
- After committing your code changes, change the version in
pyproject.toml
- Run
scripts/update-version.sh
. It will make an update version commit on your behalf