First Contribution
A walkthrough for making your first code change on the Kewpump platform.
Branch Strategy
Create a feature branch from main:
bash
git checkout main
git pull origin main
git checkout -b feature/your-feature-nameMaking Changes
Project Structure
Code Style
- Follow existing C# and Blazor conventions
- See Blazor Conventions for details
Testing Your Changes
bash
# TODO: Add test commandsSubmitting a Pull Request
Push your branch:
bashgit push origin feature/your-feature-nameOpen a pull request against
mainFill in the PR template with:
- Summary of changes
- Testing performed
- Screenshots (if UI changes)
Request a review