mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-21 10:43:36 +00:00
2.8 KiB
2.8 KiB
Contributing to Pulse
Thank you for your interest in contributing to Pulse! We appreciate your help. Here are some guidelines to follow:
Branch Strategy
Pulse uses a two-branch workflow:
main- Stable releases only (protected)develop- Daily development work (default working branch)
All contributions should target the develop branch.
Reporting Bugs
- Please ensure the bug was not already reported by searching on GitHub under Issues.
- If you're unable to find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and a code sample or an executable test case demonstrating the expected behavior that is not occurring.
- Use the "Bug Report" issue template if available.
Suggesting Enhancements
- Open a new issue using the "Feature Request" template.
- Clearly describe the enhancement you are proposing and why it would be beneficial.
- Provide examples or mockups if possible.
Pull Requests
Getting Started
- Fork the repository and clone your fork locally
- Create your branch from
develop:git checkout -b feature/your-feature develop - Set up development environment:
npm install npm run build:css npm run dev # Starts development server with hot reload
Development Workflow
- Local testing: Your changes will show with dynamic RC versions (e.g., "3.24.0-rc5")
- Version display: RC versions increment automatically with each commit
- No version management needed: The system handles versioning automatically
Before Submitting
- Ensure your code adheres to the project's existing style
- If you've added code that should be tested, add tests
- Ensure the test suite passes:
npm test - Make sure your code lints (if linters are set up)
- Test your changes thoroughly
Submitting Your Pull Request
- Push to your fork:
git push origin feature/your-feature - Create a pull request targeting the
developbranch - Provide a clear description of what your changes do
- Reference any related issues in your PR description
After Submission
- We will review your pull request and provide feedback
- Your changes will automatically get RC releases for testing when merged to
develop - Once tested and approved, changes will be included in the next stable release
Release Candidate Testing
When your PR is merged to develop:
- Automatic RC creation: A new RC release is created automatically
- Docker images: Multi-arch Docker images are built and published
- Version tracking: RC versions increment automatically (rc1, rc2, rc3...)
- Testing opportunity: Community can test your changes before stable release
Thank you for your contribution!