Skip to content

Contribute

We welcome contributions from the community. Here are some guidelines to help you get started.

How to Contribute

  1. Fork the repository: Click the "Fork" button at the top right of the GitHub repository page.

  2. Clone your fork:

      git clone https://github.com/LAiSER-Software/extract-module.git
    

  3. Create a branch:
      git checkout -b feature-branch
    
  4. Make your changes: Implement your feature or bug fix.
  5. Commit your changes:
      git commit -m "Description of your changes"
    
  6. Push to your fork:

  git push origin feature-branch
7. Create a Pull Request: Go to the original repository and click "New Pull Request".

Reporting Issues

If you find a bug or have a feature request, please create an issue in the Issue Tracker.

Style Guide

  • Follow the existing code template style.
  • Write clear, concise commit messages.
  • Include comments where necessary.

Testing

Ensure that your changes do not break existing tests and add new tests for new features.

Thank you for contributing!