Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 903 Bytes

File metadata and controls

37 lines (26 loc) · 903 Bytes

Contributing to rapoldio CLI

Thank you for your interest in contributing to the rapoldio CLI project! We welcome contributions of all kinds.

How to Contribute

  1. Fork the repository.
  2. Create a feature branch:

git checkout -b feature/YourFeatureName

3. Make your changes with clear, descriptive commit messages.
4. Push your branch to your fork:
   ```bash
git push origin feature/YourFeatureName
  1. Open a pull request against the main branch of this repository.

Reporting Issues

If you encounter bugs or have feature requests, please open an issue at https://github.com/rapoldio/cli/issues. Provide as much detail as possible to help us address the issue.

Development Workflow

Install dependencies:

npm install

Run tests:

npm test

Ensure your code adheres to the existing style and passes all tests before submitting a pull request.