Contributing to SALLY
Thank you for your interest in contributing to SALLY. Whether you are fixing a bug, adding a feature, improving documentation, or writing tests, your work helps build a better fleet operations platform for the entire trucking industry.
This guide walks you through what you need to know before opening your first pull request.
Before You Start
Make sure you have completed the following:
- Set up your development environment — Follow the Environment Setup guide to get the monorepo running locally.
- Understand the project structure — Review Project Structure so you know where code lives and how the packages relate to each other.
- Read the architecture overview — Skim the Architecture section to understand the three-layer system (route planning, monitoring, dynamic updates).
What We Welcome
We accept contributions in the following areas:
- Bug fixes — Reproduce the issue, write a failing test, then fix it.
- New features — Coordinate with the team first by opening an issue or discussion before starting large features.
- Documentation — Improvements to these docs, inline code comments, or README files in app directories.
- Tests — Unit tests, integration tests, and end-to-end tests are always welcome.
- Refactoring — Improvements to code clarity, performance, or maintainability.
Contribution Checklist
Every contribution should follow these steps:
- Set up your environment — Clone the repo, install dependencies, start services. See Environment Setup.
- Create a feature branch — Branch from
mainusing the naming conventions in Git Workflow. - Make your changes — Follow the conventions in Code Standards.
- Write or update tests — Cover your changes with appropriate tests. Do not reduce existing coverage.
- Verify UI compliance (for frontend changes):
- Dark theme works correctly — no hardcoded light-only colors.
- Responsive layout works at 375px, 768px, and 1440px.
- All interactive elements use Shadcn/ui components (never plain HTML
<button>,<input>,<select>).
- Submit a pull request — Follow the Pull Request Guide for the expected format and review process.
Contributing Guides
| Guide | What It Covers |
|---|---|
| Code Standards | TypeScript conventions, naming patterns, frontend and backend rules |
| Git Workflow | Branching strategy, commit message format, merge process |
| Pull Requests | PR template, review expectations, checklist |
Questions?
If you are unsure about anything, open a GitHub issue with the question label. We would rather answer a question upfront than have you spend time heading in the wrong direction.