|
1 | 1 | # Contributing |
2 | | -1. Fork the repo |
3 | | -2. Create a branch: \git checkout -b feature/AmazingFeature\ |
4 | | -3. Commit your changes |
5 | | -4. Push to branch and open a PR |
| 2 | + |
| 3 | +Thank you for your interest in contributing! |
| 4 | + |
| 5 | +## Ways to Contribute |
| 6 | + |
| 7 | +### 1. Report Bugs |
| 8 | +Found a bug? Help us fix it! |
| 9 | +- Use the [bug report template](.github/ISSUE_TEMPLATE/bug_report.md) |
| 10 | +- Include steps to reproduce |
| 11 | +- Add screenshots if applicable |
| 12 | + |
| 13 | +### 2. Suggest Features |
| 14 | +Have an idea for improvement? |
| 15 | +- Use the [feature request template](.github/ISSUE_TEMPLATE/feature_request.md) |
| 16 | +- Describe the use case |
| 17 | +- Explain the expected benefit |
| 18 | + |
| 19 | +### 3. Improve Documentation |
| 20 | +- Fix typos |
| 21 | +- Clarify explanations |
| 22 | +- Add examples |
| 23 | +- Translate to other languages |
| 24 | + |
| 25 | +### 4. Submit Code |
| 26 | +- Fork the repository |
| 27 | +- Create a feature branch |
| 28 | +- Make your changes |
| 29 | +- Submit a pull request |
| 30 | + |
| 31 | +## Development Setup |
| 32 | + |
| 33 | +```bash |
| 34 | +# 1. Fork and clone |
| 35 | +git clone https://github.com/YOUR_USERNAME/Units_of_Measure_Harmonization-intelligence-platform.git |
| 36 | +cd Units_of_Measure_Harmonization-intelligence-platform |
| 37 | + |
| 38 | +# 2. Create a branch |
| 39 | +git checkout -b feature/your-feature-name |
| 40 | + |
| 41 | +# 3. Make changes |
| 42 | +# (edit files in KNIME or code) |
| 43 | + |
| 44 | +# 4. Test thoroughly |
| 45 | +# Run the workflow with test data |
| 46 | + |
| 47 | +# 5. Commit with descriptive message |
| 48 | +git commit -m "feat: add support for new unit types" |
| 49 | + |
| 50 | +# 6. Push and create PR |
| 51 | +git push origin feature/your-feature-name |
| 52 | +``` |
| 53 | + |
| 54 | +## Pull Request Guidelines |
| 55 | + |
| 56 | +### Before Submitting |
| 57 | +- Code follows project style |
| 58 | +- Tests pass |
| 59 | +- Documentation updated |
| 60 | +- No merge conflicts |
| 61 | + |
| 62 | +### PR Title Format |
| 63 | +Use conventional commits: |
| 64 | +- `feat:`: New feature |
| 65 | +- `fix:`: Bug fix |
| 66 | +- `docs:`: Documentation |
| 67 | +- `style:`: Formatting |
| 68 | +- `refactor:`: Code restructuring |
| 69 | +- `test:`: Adding tests |
| 70 | +- `chore:`: Maintenance |
| 71 | + |
| 72 | +### PR Description |
| 73 | +Include: |
| 74 | +- What changed |
| 75 | +- Why it changed |
| 76 | +- How to test it |
| 77 | +- Screenshots (if UI changes) |
| 78 | + |
| 79 | +## Code Style |
| 80 | + |
| 81 | +### KNIME Workflows |
| 82 | +- Use descriptive node names |
| 83 | +- Add comments for complex logic |
| 84 | +- Group related nodes |
| 85 | +- Keep workflows clean and organized |
| 86 | + |
| 87 | +### Documentation |
| 88 | +- Use clear, simple language |
| 89 | +- Include code examples |
| 90 | +- Add images where helpful |
| 91 | +- Keep line length under 100 characters |
| 92 | + |
| 93 | +## Getting Help |
| 94 | + |
| 95 | +- [GitHub Discussions](https://github.com/JulietMirambo/Units_of_Measure_Harmonization-intelligence-platform/discussions) |
| 96 | + |
| 97 | +- [Issue Tracker](https://github.com/JulietMirambo/Units_of_Measure_Harmonization-intelligence-platform/issues) |
| 98 | + |
| 99 | +## Recognition |
| 100 | + |
| 101 | +Contributors are added to: |
| 102 | +- README contributors section |
| 103 | +- CHANGELOG |
| 104 | +- GitHub contributors page |
| 105 | + |
| 106 | +## License |
| 107 | + |
| 108 | +By contributing, you agree that your contributions will be licensed under the MIT License. |
| 109 | + |
| 110 | +--- |
| 111 | + |
| 112 | +**Thank you for making this project better!** |
0 commit comments