Questarr

Questarr Logo

A video game management application inspired by the -Arr apps (Sonarr, Radarr, Prowlarrโ€ฆ) and GamezServer. Track and organize your video game collection with automated discovery and download management.

Library screenshot

Docker Pulls GHCR License GitHub release GitHub release date GitHub last commit

security rating reliability rating maintainability rating OpenSSF Best Practices OpenSSF Best Practices Badge

CI Codecov Code Scanning tests Maintenance

โญ Star us on GitHub โ€” your support motivates us a lot! ๐Ÿ™๐Ÿ˜Š

Discord Share Share Share Share Share Buy Me A Coffee

Table of Contents

List of features

Feature Description
Backlog management Track your collection with status indicators (Wanted, Owned, Playing, Completed, Shelved), ratings, and notes.
Game Discovery Browse popular, new, and upcoming titles via IGDB, RSS feeds, and xREL.to, or sync your Steam wishlist directly into the app.
Search & Filter Find games by genre, platform, and keyword, with automatic search until a release is found, plus release blacklisting and preferred release groups/platforms.
Download Management Integrates with indexers and downloaders with optional auto-download and automatic post-processing import.
Real-time Notifications In-app alerts for releases and downloads, plus external notifications to 100+ providers via Apprise.
Rich Game Metadata Details enriched with IGDB, Steam, PCGamingWiki, and NexusMods, including trending mods where available.
Statistics Visualize collection statistics with Discord sharing support. ๐Ÿšง
Security Focused General security hardening, SSL support, and OpenSSF certified โ€” see SECURITY.md for the full process.
Integrations One-click install on UNRAID, CasaOS, Umbrel and Cosmos Cloud, a Home Assistant add-on, and a Helm chart for Kubernetes. ๐Ÿšง
Design Clean, minimalist, dark-first UI built with mobile usage in mind.

Supported Indexers/Downloaders

Indexers Downloaders
Torznab protocol (Torrent) - qBittorent
- Transmission
- rTorrent
- Deluge
- Synology Download Station
Newznab protocol (Usenet) - Sabnzbd
- Nzbget
G4U.to Same as Newznab

Installation

Docker is the easiest way to deploy Questarr with all dependencies included. Questarr uses a SQLite database which is self-contained in the application container.

Supported architectures: released Docker images are published for linux/amd64 and linux/arm64, so Questarr runs on a Raspberry Pi 4/5 with a 64-bit OS, other 64-bit ARM SBCs, and ARM-based NAS boxes as well as on x86 hardware. Docker selects the right architecture automatically โ€” the commands below are identical on every platform. (32-bit ARM, e.g. armv7/a 32-bit OS on Raspberry Pi 3 and earlier, is not supported. The Home Assistant add-on is amd64-only.)

Option 1: One-liner (Simplest but minimal)

docker run -d -p 5000:5000 -v ./data:/app/data --name questarr ghcr.io/doezer/questarr:latest

Option 2: Docker Compose (more detailed)

  1. Use the docker-compose.yml file from the repo or create a minimal one:

    services:
      app:
        image: ghcr.io/doezer/questarr:latest
        ports:
          - "5000:5000"
        volumes:
          - ./data:/app/data
        environment:
          - SQLITE_DB_PATH=/app/data/sqlite.db
        restart: unless-stopped
    
  2. Start the application:

    docker compose up -d
    
  3. Access the application: Open your browser to http://localhost:5000

Proxmox VE (LXC)

Deploy as a Proxmox LXC container โ€” no Docker Run this **on your Proxmox VE host**, as `root`, to create an LXC container with Questarr installed and running as a `systemd` service: ```bash bash -c "$(curl --fail --silent --show-error --location --proto '=https' --proto-redir '=https' https://raw.githubusercontent.com/Doezer/Questarr/main/scripts/proxmox/questarr-lxc.sh)" ``` The script picks the next free container ID, downloads a Debian template if needed, creates an unprivileged container, builds Questarr from source, and prints the URL to open. Every prompt has a default, so you can accept them all and be done in a few minutes. Update later with `pct exec -- update`. See [docs/PROXMOX.md](/Questarr/docs/PROXMOX.html) for non-interactive installs, sizing guidance, configuration, and troubleshooting. </details> ### UNRAID
Install via Community Applications Questarr is available in the Unraid **Apps** tab via Community Applications: 1. Open the **Apps** tab and search for **Questarr**, then click **Install**. 2. Set your **Data Path** (default `/mnt/user/appdata/questarr`), **PUID**/**PGID**, and ports (default `5000` HTTP, `9898` HTTPS if using it). 3. Optionally set **Library Path** to the same root your download client(s) write into (e.g. `/mnt/user/data`) if you want Questarr to move completed downloads into your game library. This host path is mounted at `/data` inside the container, so add a mapping under **Settings โ†’ Path Mappings** with **Local Path** set to `/data` and **Remote Path** set to the exact path your download client reports for that root. Leave Library Path blank if you manage imports manually. 4. Apply, then open `http://:5000` to access the UI. </details> ### CasaOS
Install via Custom Install (AppFile) 1. Open the **App Store** and click **Custom Install**. 2. Click the **import** icon (top right) and paste this URL: `https://raw.githubusercontent.com/Doezer/Questarr/main/casaos/docker-compose.yml` 3. Review the mounts โ€” by default `/DATA/AppData/questarr` holds Questarr's data and `/DATA/Downloads` is mounted at `/data` so Questarr can import finished downloads. If you keep that second mount, add a matching entry under **Settings โ†’ Path Mappings**. 4. Click **Install**, then open Questarr from the CasaOS dashboard (port `5000`).
### Umbrel
Install via Community App Store 1. In umbrelOS, open the **App Store**. 2. Click the **โ‹ฎ** menu (top right) โ†’ **Community App Stores**. 3. Add this repository URL: `https://github.com/Doezer/Questarr` 4. Open the **Doezer** store and install **Questarr** (app ID `doezer-questarr`), then open it from your dashboard (`http://umbrel.local:5000`).
### Cosmos Cloud
Install as a ServApp 1. Open **Market Place โ†’ Custom Install** (or **Servapps โ†’ Add**). 2. Paste this URL: `https://raw.githubusercontent.com/Doezer/Questarr/main/cosmos/questarr.cosmos-compose.json` 3. Fill in the install form: **Data folder**, optional **Library folder** (the root your download client writes into, mounted at `/data`), and `PUID`/`PGID`. 4. Install. Cosmos creates the route `questarr.` and handles HTTPS for you. </details> ### Kubernetes (Helm)
Install with the bundled Helm chart A Helm chart lives in [`charts/questarr`](charts/questarr). It is not published to a Helm repository yet, so install it from a clone: ```bash git clone https://github.com/Doezer/Questarr.git cd Questarr helm install questarr charts/questarr --namespace questarr --create-namespace ``` Then port-forward (or enable the Ingress) and open the UI: ```bash kubectl port-forward -n questarr svc/questarr 5000:5000 ``` Questarr keeps its state in a single SQLite database on a ReadWriteOnce volume, so the chart never runs more than one replica. See [`charts/questarr/README.md`](/Questarr/charts/questarr/) for the full option reference โ€” persistence, media mounts, secrets, Ingress and subdirectory deployments.
### Home Assistant Add-on
Install as a Home Assistant add-on You can install Questarr as a Home Assistant add-on from this repository: 1. In Home Assistant, open **Settings โ†’ Add-ons โ†’ Add-on Store**. 2. Click the menu (โ‹ฎ) and choose **Repositories**. 3. Add this repository URL: `https://github.com/Doezer/Questarr` 4. Install the **Questarr** add-on and start it. 5. Open `http://:5000` to access the UI. </details> All platform definitions live in the repository and share the same mounts and ports โ€” see [docs/HOME_SERVER_APPS.md](/Questarr/docs/HOME_SERVER_APPS.html) for details. ## Screenshots
๐Ÿ‘€ See the app in action ### Library Your central hub for recent activity, collection overview and downloading available games. Manage your owned and wanted games.

### Wishlist & Release calendar Manage your wanted games and when they release.

### Discover Games Browse and find new games to add to your collection. #### RSS & xRel.to feeds Custom RSS feeds and xRel.to flux matched to IGDB games directly into the app. Default RSS is set to fitgirl site.

### Downloads Queue Monitor your downloaders' active downloads and history. ### Statistics Check out your library statistics. ### Settings Configure indexers, downloaders, and application preferences.

## Tech Stack ![React](https://img.shields.io/badge/React-20232A?style=flat&logo=react&logoColor=61DAFB) ![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=flat&logo=typescript&logoColor=white) ![Vite](https://img.shields.io/badge/Vite-646CFF?style=flat&logo=vite&logoColor=white) ![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-38B2AC?style=flat&logo=tailwind-css&logoColor=white) ![Node.js](https://img.shields.io/badge/Node.js-43853D?style=flat&logo=node.js&logoColor=white) ![SQLite](https://img.shields.io/badge/SQLite-07405E?style=flat&logo=sqlite&logoColor=white) [![Node.js](https://img.shields.io/badge/Node.js-22.19%2B-339933?logo=node.js&logoColor=white)](package.json) [![language](https://img.shields.io/badge/language-TypeScript-3178C6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/) [![OS](https://img.shields.io/badge/OS-linux%2C%20windows%2C%20macOS-0078D4)](#installation) [![CPU](https://img.shields.io/badge/CPU-amd64%2C%20arm64-FF8C00)](#installation) - **APIs**: IGDB (game metadata), Torznab/Newznab (indexer search), PCGamingWiki, NexusMods, xREL.to - **AIs usage**: - Claude and Github Copilot are used for AI-Assisted coding, internal code reviews, PR cleanup. Eventually automated coding and troubleshooting for small tasks and bug reports. - Gemini & Codex are used for automated code reviews, and brainstorming from time to time (as well as Perplexity for this usage). - Google Jules is used for light periodical refactoring. ## Configuration 1. **First-time setup:** - Create your admin account - Configure the IGDB credentials Once logged-in: - Configure indexers - Add downloaders - Add games! See [Configuration on the Wiki](https://github.com/Doezer/Questarr/wiki/Configuring-the-application#configure-app-behavior-in-settings--general) for more detailed info.
Getting IGDB API Credentials IGDB provides game metadata (covers, descriptions, ratings, release dates, etc.). 1. Go to [Twitch Developer Console](https://dev.twitch.tv/console) 2. Log in with your Twitch account (create one if needed) 3. Click "Register Your Application" 4. Fill in: - **Name**: Questarr (or any name) - **OAuth Redirect URLs**: `http://localhost` (not used, but required) - **Category**: Application Integration 5. Click "Create" 6. Copy your **Client ID** and **Client Secret** 7. Add them to your `.env` file
Upgrading from v1.0 (PostgreSQL) If you are upgrading from an older version that used PostgreSQL, you need to migrate your data. 1. **Stop your current application:** ```bash docker compose down ``` 2. **Get the migration tools:** Download the [`docker-compose.migrate.yml`](https://raw.githubusercontent.com/Doezer/Questarr/main/docker-compose.migrate.yml) file to your directory. 3. **Run the migration:** This command spins up your old database and converts the data to the new format automatically. ```bash docker compose -f docker-compose.migrate.yml up --abort-on-container-exit ``` 4. **Update your deployment:** Replace your `docker-compose.yml` with the new version (see "Fresh Install" above). 5. **Start the new version:** ```bash docker compose up -d ``` See [docs/MIGRATION.md](/Questarr/docs/MIGRATION.html) for more details.
Advanced usage ### Docker compose This is mainly for users who want the latest commit (e.g when trying out fixes for an issue) or contributing users. 1. **Clone the repository:** ```bash git clone https://github.com/Doezer/Questarr.git cd Questarr ``` 1. **Configure the application:** Edit `docker-compose.yml` directly if you need to setup a specific environment. 1. **Build and start the containers:** ```bash docker-compose up -d ``` 1. **Access the application:** Open your browser to `http://localhost:5000` ### Update to latest version for Docker Your database content will be kept. ```bash git pull docker-compose down docker-compose build --no-cache docker-compose up -d ``` ### Reverse proxy / subdirectory deployment Want to serve Questarr from a path like `https://xxx.domain.com/Questarr` instead of its own subdomain? Set `QUESTARR_BASE_PATH=/Questarr` on the container (or in `.env` for npm installs) and point your reverse proxy at it โ€” no rebuild required. See [docs/REVERSE_PROXY.md](/Questarr/docs/REVERSE_PROXY.html) for full setup instructions (nginx, Traefik, Caddy).
## Roadmap Based on the [Product Requirements Document](/Questarr/docs/PRD.html), here's what's planned over the next 6 months, in priority order: - โœ… **P0 โ€” Post-Processing Pipeline** : Move/copy completed downloads to a destination path, extract archives โ€” closing the "set it and forget it" loop. - **P1 โ€” Smart Game Backlog**: Track the version of each downloaded game and notify (or auto-download) when a newer release shows up on indexers. - **P2 โ€” Direct Download Support**: Add debrid services (Real-Debrid and similar) as a downloader option, no seeding required. - **P3 โ€” External Library Sync**: Import owned games from Steam/GOG libraries and local filesystem scans, not just wishlists. - **P4 โ€” Integrations with External Tools**: โœ… Playnite extension shipped (library sync, request-to-download); RomM, Gameyfin, and a generic webhook for anything not explicitly supported are still planned. - **P5 โ€” Indexer Page Links**: A "View on indexer" link on search results and downloads. - **P6 โ€” PostgreSQL Support**: Re-introduce PostgreSQL as an optional backend, with SQLite remaining the zero-config default. **Ongoing:** mobile responsiveness, search UX, performance, and security improvements. See the full [PRD](/Questarr/docs/PRD.html) for problem statements, detailed scope, and non-goals. ## Troubleshooting See [Troubleshooting on the Wiki](https://github.com/Doezer/Questarr/wiki/Troubleshooting) If you run into an issue, go to the **Logs** page and click **Send Logs** before reporting it โ€” it makes diagnosing the problem much easier. ### Getting Help - **Issues**: [GitHub Issues](https://github.com/Doezer/Questarr/issues) - **Discussions**: [GitHub Discussions](https://github.com/Doezer/Questarr/discussions) - **Discord**: [Join our Server](https://discord.gg/STkp86wP9F) ## Project Security & Documentation - Start with [docs/GITHUB_DOCUMENTATION.md](/Questarr/docs/GITHUB_DOCUMENTATION.html) for the canonical documentation map. ## Contributing - See [.github/CONTRIBUTING.md](.github/CONTRIBUTING.md) for guidelines on how to contribute to this project. - See [MAINTAINERS.md](/.github/MAINTAINERS.md) for the current list of project members with access to sensitive resources. ### Contributors Made with [contrib.rocks](https://contrib.rocks). ## Legal Disclaimer Questarr is a self-hosted game manager designed solely for organizing, tracking, and automating game libraries using user-provided data and metadata APIs (such as IGDB). Questarr does not host, distribute, or provide any copyrighted game content, ROMs, or download links. It is a technology-neutral tool: any indexers, download clients, or sources you configure are chosen and operated entirely by you. You are solely responsible for ensuring that your use of Questarr, and any content you access or download through third-party services you configure, complies with all applicable laws and the terms of service of those third parties. ## License GPL3 License - see [COPYING](/Questarr/COPYING) file for details. ## Acknowledgments - Inspired by [Sonarr](https://sonarr.tv/) and [GamezServer](https://github.com/05sonicblue/GamezServer) - Game metadata powered by [IGDB API](https://www.igdb.com/) - UI components from [shadcn/ui](https://ui.shadcn.com/)