Skip to content

Contribute to ZapTracker

ZapTracker is open source and community-driven.

Every contribution matters — from fixing a typo to adding a feature.

Ready to Contribute?

Fork the repo and start building. We'll help you along the way.

Three Steps to Contribute

Fork & Clone

Get the code on your machine

Make Changes

Fix a bug or add a feature

Submit PR

We review and merge

Quick Start

bash
# Clone your fork
git clone https://github.com/YOUR-USERNAME/zap_dashboard.git
cd zap_dashboard

# Install & run
npm install
npm run dev

Open http://localhost:5173 — you're ready to code.

Ways to Help

Submitting Your Work

bash
# Create a branch
git checkout -b fix/your-fix-name

# Make changes, then commit
git add .
git commit -m "fix: describe what you fixed"

# Push and open PR on GitHub
git push origin fix/your-fix-name

Keep It Simple

One fix per PR. Small PRs get merged faster.

Code Conventions

WhatConvention
ComponentsPascalCase.vue
Commitsfeat: fix: docs: prefix
StylingTailwind utilities first
StateVue 3 Composition API

Need Help?