# Contributing to superseedr
Thank you for your interest in helping improve superseedr!
You do not need programming experience to contribute. Some of the most helpful contributions are bug reports, feature ideas, and general feedback.
## π Report a Bug
If something doesn't work as expected, please open a GitHub issue and include:
- A clear title describing the problem
- What you expected to happen
- What actually happened
- Steps to reproduce the issue
- Your environment (OS, version, Docker or native, etc.)
- Any relevant logs or error messages
Before creating a new issue, please search [[existing issues](https://github.com/Jagalite/superseedr/issues)](https://github.com/Jagalite/superseedr/issues) and [[discussions](https://github.com/Jagalite/superseedr/discussions)](https://github.com/Jagalite/superseedr/discussions) to avoid duplicates or find existing solutions.
## π‘ Suggest a Feature or Idea
Have an idea to improve superseedr?
Before creating a new issue, please search [[existing issues](https://github.com/Jagalite/superseedr/issues)](https://github.com/Jagalite/superseedr/issues) and [[discussions](https://github.com/Jagalite/superseedr/discussions)](https://github.com/Jagalite/superseedr/discussions) to see if your idea has already been proposed or discussed.
You can open a GitHub issue and describe:
- What problem you're trying to solve
- Your suggested solution or idea
- Why it would be useful to users
Even rough or incomplete ideas are welcome.
## π Help Improve Documentation
You can contribute by:
- Reporting confusing or outdated docs
- Suggesting clearer explanations
- Proposing examples or setup guides
- Improving the README, FAQ, or other documentation files
## π Report a Security Vulnerability
If you discover a security vulnerability, **please do not open a public issue.**
Instead:
1. Contact the maintainers privately (use GitHub Security Advisory or email)
2. Include a detailed description of the vulnerability
3. Provide steps to reproduce if possible
4. Allow time for a fix before public disclosure
We take security seriously and will respond promptly.
## Guidelines for All Contributions
### β
General Guidelines
- Be respectful and constructive
- Keep discussions on-topic
- Provide as much relevant detail as possible
- For existing issues or discussions, you can "bump" them by adding a comment if you have new information, want to express increased urgency, or can provide additional details/context
---
## π§βπ» Contributing Code (for developers)
### Development Environment Setup
**Prerequisites:**
- Rust toolchain (latest stable version)
- Docker and Docker Compose (for Docker-related changes)
- A terminal with Unicode support (Windows Terminal, iTerm2, or modern Linux terminals)
- Git
**Quick Start:**
```bash
# Fork the repository on GitHub first, then clone your fork
git clone https://github.com/YOUR_USERNAME/superseedr.git
cd superseedr
# Build the project
cargo build
# Run tests
cargo test
# Run locally
cargo run
```
**For Docker development:**
```bash
# Build the Docker image locally
docker build -t superseedr-dev .
# Test standalone Docker setup
docker compose -f docker-compose.standalone.yml up
# Test with Gluetun (requires .env and .gluetun.env configuration)
docker compose up
```
### Code Style & Formatting
- Run `cargo fmt` before committing to format your code
- Ensure `cargo clippy` passes without warnings
- Follow Rust naming conventions:
- `snake_case` for functions and variables
- `PascalCase` for types and structs
- `SCREAMING_SNAKE_CASE` for constants
- Add documentation comments (`///`) for public APIs and complex logic
- Keep line length reasonable (suggested 100 characters, but not strict)
### Testing
Superseedr uses multiple testing strategies to ensure reliability:
**Unit Tests:**
```bash
# Run all tests
cargo test
# Run specific test
cargo test test_name
# Run tests with output
cargo test -- --nocapture
```
**Model-Based Fuzzing:**
The project uses model-based testing for protocol correctness. Fuzzing tests run nightly via GitHub Actions to verify BitTorrent protocol implementation.
**Manual Testing:**
- Test with real torrents in a safe environment (use legal content like Linux ISOs)
- Verify VPN integration with Gluetun if modifying networking code
- Check TUI rendering in different terminal emulators (iTerm2, Windows Terminal, Alacritty, etc.)
- Test in both light and dark terminal colour schemes
- Verify keyboard controls work as expected
**When contributing code:**
- Add unit tests for new functionality
- Update existing tests if changing behavior
- Ensure all tests pass before submitting a PR
### Working on the TUI
Superseedr uses [[Ratatui](https://ratatui.rs/)](https://ratatui.rs/) for the terminal interface.
**Testing UI changes:**
- Run the app locally: `cargo run`
- Test in different terminal sizes (resize your terminal window)
- Verify rendering in multiple terminal emulators
- Check that animations remain performant (1-60 FPS target)
- Ensure colour schemes work in both light and dark modes
**UI Guidelines:**
- Keep animations performant and smooth
- Ensure all features are keyboard-accessible (no mouse-only features)
- Maintain consistency with existing keybinding patterns
- Follow the existing visual style and layout conventions
- Test with the minimum supported terminal size
### Docker & VPN Changes
When modifying Docker setup or VPN integration:
- Test with both Gluetun and standalone configurations
- Verify port forwarding works correctly
- Check that dynamic port reloading functions as expected
- Update `.env.example` and `.gluetun.env.example` if adding new configuration variables
- Test with at least one VPN provider if possible
- Document any new environment variables in the README
### Private Tracker Support
Superseedr supports private tracker builds that disable DHT and PEX.
When contributing:
- Ensure changes don't break private tracker mode
- Test both public and private tracker configurations if modifying protocol behavior
- Respect the privacy and security requirements of private trackers
### Continuous Integration
All PRs must pass automated checks:
- β
Rust build and compilation
- β
All unit tests
- β
Clippy lints (no warnings)
- β
Code formatting check (`cargo fmt`)
- β
Model-based fuzzing (runs nightly)
#### CI/CD Security Note
**For external contributors:**
- GitHub Actions workflows require maintainer approval to run on PRs from forks
- This is a security measure to protect repository secrets (see npm shai hulud incident)
- Your PR will be reviewed before CI runs
- Once approved, automated checks will execute
**What this means for you:**
- Don't be alarmed if CI doesn't run immediately on your PR
- Maintainers will review and approve workflow execution
- You can still run `cargo test`, `cargo clippy`, and `cargo fmt` locally before submitting
Check the Actions tab on your PR to see CI results. Fix any failures before requesting review.
### Branch Naming Conventions
Create descriptive branch names following these patterns:
- Feature: `feature/add-upnp-support`
- Bug fix: `fix/port-reload-crash`
- Documentation: `docs/update-contributing-guide`
- Refactoring: `refactor/simplify-peer-manager`
- Performance: `perf/optimize-piece-selection`
### Contributing to Roadmap Items
The [[ROADMAP.md]](ROADMAP.md) outlines the project's planned features and future direction. Contributors are encouraged to:
- **Review upcoming features:** Check the roadmap to see what features are planned but not yet started
- **Start discussions:** If you're interested in working on a roadmap item, open a discussion to explore implementation ideas
- **Propose new items:** Have an idea not on the roadmap? Create an issue to propose it for consideration
- **Prioritize aligned work:** Roadmap-aligned contributions are more likely to be reviewed and merged quickly
Roadmap items are tagged in GitHub issues. Look for labels like `roadmap:v1.0`, `roadmap:v1.5`, or `roadmap:future` to find work that fits your interests and skill set.
### Claiming Work on Issues
To avoid duplicate effort and ensure coordination:
1. **Before starting work on an issue:**
- Comment on the issue expressing your interest in working on it
- Wait for maintainer acknowledgment/assignment before starting significant work
- If the issue is already assigned to someone else, check if they're still working on it
2. **Discuss your approach:**
- For non-trivial changes, outline your proposed implementation approach in the issue
- Wait for maintainer feedback on technical feasibility, alignment with roadmap, and project vision
- Discuss release timing considerations if relevant
3. **Assignment process:**
- Maintainers will assign the issue to you once your approach is approved
- If you're assigned but can no longer work on it, please comment to let maintainers know
**Important:** We do not accept unsolicited PRs without prior discussion. All code contributions must:
- Have an associated GitHub issue
- Include documented discussion of the approach
- Receive maintainer approval before implementation begins
- Consider technical feasibility, roadmap alignment, and project architecture
This ensures changes align with project goals and prevents wasted effort on work that may not be accepted.
### Contribution Workflow
1. **Find or create an issue and get approval:**
- Search for an existing issue related to your proposed change
- If none exists, create a new issue describing the problem/feature
- **Comment on the issue** stating you'd like to work on it
- **Wait for maintainer response** before starting work
- Discuss your proposed approach, including:
* **Technical feasibility:** Can this be implemented without breaking existing functionality?
* **Roadmap alignment:** Does this fit the project's direction and priorities?
* **Project vision:** Is this change consistent with superseedr's goals?
* **Implementation details:** What's your planned approach?
* **Release timing:** Are there version/timing considerations?
- **Get assigned to the issue** by a maintainer before beginning implementation
2. **Fork the repository** (if you haven't already)
3. **Clone your fork locally:**
```bash
git clone https://github.com/YOUR_USERNAME/superseedr.git
cd superseedr
```
4. **Create a new branch** with a descriptive name:
```bash
git checkout -b feature/your-feature-name
```
5. **Make your changes:**
- Write clean, documented code
- Follow existing code style and conventions
- Add tests for new functionality
6. **Test your changes:**
```bash
cargo build
cargo test
cargo clippy
cargo fmt --check
```
7. **Commit your changes:**
```bash
git add .
git commit -m "Add feature: brief description"
```
- Use clear, descriptive commit messages
- Reference issue numbers when applicable (e.g., "Fix #123: resolve port binding issue")
8. **Push to your fork:**
```bash
git push origin feature/your-feature-name
```
9. **Open a Pull Request** with:
- A clear title describing the change
- Description of what changed and why
- Link to related issues (e.g., "Fixes #123", "Relates to #456")
- Screenshots or demos for UI changes
- Notes on testing performed
### Pull Request Guidelines
- Keep changes focused and scoped to a single feature or fix
- Describe what changed and why in the PR description
- Link related issues if applicable
- Respond to review feedback promptly and constructively
- Be patient - maintainers review PRs as time permits
- Update your PR if the main branch has moved forward
## π Recognition
All contributors will be acknowledged in release notes. Thank you for making superseedr better!
## Additional Resources
- π [FAQ](FAQ.md) - Common questions and answers
- πΊοΈ [Roadmap](ROADMAP.md) - Future plans and features
- π [Changelog](CHANGELOG.md) - Recent changes and version history
- π€ [Code of Conduct](CODE_OF_CONDUCT.md) - Community standards
- π¬ [[Discussions](https://github.com/Jagalite/superseedr/discussions)](https://github.com/Jagalite/superseedr/discussions) - General questions and ideas
- π [[Ratatui Documentation](https://ratatui.rs/)](https://ratatui.rs/) - TUI framework reference
## Questions?
If you're unsure about anything, don't hesitate to:
- Ask in [[Discussions](https://github.com/Jagalite/superseedr/discussions)](https://github.com/Jagalite/superseedr/discussions)
- Comment on a relevant issue
- Reach out to maintainers
We're here to help and appreciate your interest in contributing! π