Contributing
See CONTRIBUTING.md for the full contributing guide.
Quick start
git clone https://github.com/vngcloud/greennode-cli.git
cd greennode-cli
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
python -m pytest tests/ -v
Adding a new service
- Create
grncli/customizations/<service>/ - Write commands extending
BasicCommand - Register in
grncli/handlers.py
See grncli/customizations/vks/ for a complete reference implementation.