Skip to content

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-name

Making Changes

Project Structure

Code Style

Testing Your Changes

bash
# TODO: Add test commands

Submitting a Pull Request

  1. Push your branch:

    bash
    git push origin feature/your-feature-name
  2. Open a pull request against main

  3. Fill in the PR template with:

    • Summary of changes
    • Testing performed
    • Screenshots (if UI changes)
  4. Request a review

Code Review Process

After Merging

Resources