JavaScript is required

Documentation

The Reaparr documentation is helps users understand how to use Reaparr, troubleshoot issues, and contribute to the project. This page outlines how you can contribute to the documentation and make it better for everyone.

Editing a Page

Every page has an Edit this page link at the bottom. Clicking it will take you directly to the file on GitHub.

From there:

  1. Make your changes in the Markdown editor
  2. When done, click on "Commit Changes" at the top right of the page
  3. Add a descriptive commit message about what you changed
  4. Scroll down and ensure the "Create a new branch for this commit and start a pull request" option is selected
    • The branch name will be automatically generated based on your commit message, but you can change it if you want
  5. Submit the pull request

That's it — no cloning or local environment needed.

You're also free to create an issue on GitHub if you want to suggest changes without editing the content yourself.

Running Locally

If you want to preview your changes locally before submitting:

  1. Clone your fork
  2. Install dependencies:
    bun install
    
  3. Start the development server:
    bun run dev
    
  4. Open http://localhost:4000 in your browser

Writing Content

Documentation pages are written in Markdown and live in the content/docs directory. Refer to the Nuxt Content docs for supported syntax and components.