A mobile app to manage your self-hosted media stack from a single interface.
Built with Expo & React Native. Inspired by nzb360.
Thanks to everyone who has contributed to Dashboarr!
Dashboarr is a native mobile app (Android & iOS) that connects directly to your self-hosted *arr stack and media services. No backend server required — the app talks to each service's REST API using your API keys.
Supported services:
| Service | What you can do |
|---|---|
| qBittorrent | View queue, pause/resume/delete torrents, speed stats, transfer progress |
| SABnzbd | View Usenet queue & history, pause/resume/delete jobs, add NZB by URL, speed stats |
| NZBGet | View Usenet queue & history, pause/resume/delete jobs, add NZB by URL, speed stats |
| Radarr | Search & add movies, monitor status, view queue, missing/wanted lists |
| Sonarr | Search & add shows, episode monitoring, airing calendar/schedule |
| Seerr | Browse & search media, request movies/shows, approve/decline requests |
| Tautulli | Active Plex streams, bandwidth stats, playback history |
| Prowlarr | Indexer status & toggle, search across all indexers, grab releases, stats |
| Plex | Now playing, recently added, on deck, library browsing |
| Jellyfin | Now playing, recently added, continue watching, library browsing |
| Bazarr | Wanted subtitles for movies & episodes, history, on-demand subtitle search |
| Glances | Server CPU, RAM, disk, and network stats |
- Unified dashboard — All your services at a glance with customizable, reorderable cards
- Multi-instance support — Run two qBittorrents, split 4K and 1080p Radarrs, or any combination — switch in-tab and aggregate on the dashboard
- Dark mode only — Designed for OLED screens and late-night browsing
- Auto network switching — Detects your home WiFi SSID and switches between local/remote URLs automatically
- Per-service configuration — Enable only the services you use; tabs auto-hide for disabled services
- Secure storage — API keys stored in the device's secure enclave via
expo-secure-store - Wake-on-LAN — Wake your server from the app when it's asleep
- Pull-to-refresh — On every screen
- Config import/export — Back up and restore your entire configuration (with biometric auth)
- Adjustable UI scale — 1.0 / 1.15 / 1.3 for accessibility and larger displays
- No backend required — Pure client architecture for core functionality; your data stays between your phone and your servers
- Optional self-hosted backend — Enable real push notifications by running the companion backend on your server (Node.js or Docker)
Dashboarr is now available on the Apple App Store: Dashboarr on the App Store
Dashboarr is now available on the Google Play Store: Dashboarr on Google Play
If you're running a de-Googled Android (GrapheneOS, LineageOS, /e/OS, etc.) or just prefer to sideload, the signed APK for every release is attached to the matching tag on the Releases page.
- Download
app-release.apkfrom the latest release - Open it on your device — Android will prompt you to allow installs from your browser/file manager
- Updates are manual: there is no in-app updater for sideloaded installs, so check the Releases page periodically (or watch the repo)
The APK is signed with the same keystore as the Play Store build, so you can install it side-by-side or migrate from Play without losing data — but you cannot mix the two on the same device.
# Clone the repo
git clone https://github.com/renzobeux/dashboarr.git
cd dashboarr
# Install dependencies
pnpm install
# Start the dev server
pnpm startScan the QR code with Expo Go on your device, or press a for Android emulator / i for iOS simulator.
# Android (EAS Build)
pnpm build:android
# iOS (EAS Build)
pnpm build:ios
# Android local production build — produces both AAB (Play Store) and APK (sideload)
pnpm build:android:prod
# Upload the locally-built APK to the GitHub Release matching package.json version
# (creates the release with auto-generated notes if it doesn't exist yet)
pnpm release:android:apk
# Build + upload in one go
pnpm release:androidThe release:* scripts require the GitHub CLI (gh) to be installed and authenticated against the repo. The APK is read from android/app/build/outputs/apk/release/app-release.apk and uploaded to the tag v<version> from package.json.
Dashboarr works fully without a backend. If you want real push notifications delivered to your phone's lock screen — torrent completed, new episodes grabbed, request approved, service offline — you can self-host the lightweight companion backend.
The backend polls your services and ingests their webhooks, then fires Expo pushes to every paired device. It pairs with your phone via QR code (no accounts) and supports multiple instances per service kind.
For setup, configuration, environment variables, webhook URLs, and per-instance push attribution, see the backend README.
All service configuration is done in the Settings tab within the app:
- Enable the services you use
- Enter each service's local URL, remote URL, and API key
- Optionally set your home WiFi SSID for automatic local/remote URL switching
- Reorder dashboard cards by entering edit mode on the dashboard
app/ # Expo Router file-based routing
(tabs)/ # Bottom tab screens (dashboard, movies, tv, etc.)
movie/ # Movie detail & search screens
series/ # Series detail & search screens
torrent/ # Torrent detail screen
sab/ # SABnzbd job detail screens
nzb/ # NZBGet job detail screens
backend/
dashboarr-backend/ # Self-hosted companion server (Fastify + SQLite)
components/
ui/ # Reusable UI primitives (cards, buttons, inputs, toggles)
common/ # Shared layout components (screen wrapper, pull-to-refresh)
dashboard/ # Dashboard card components
downloads/ # Unified downloads list (qBittorrent + SABnzbd + NZBGet)
qbittorrent/ # qBittorrent-specific components
radarr/ # Radarr-specific components
sonarr/ # Sonarr-specific components
overseerr/ # Seerr-specific components (folder name kept for back-compat)
settings/ # Settings screen components
services/ # Raw API clients for each service
hooks/ # TanStack Query wrappers (caching, polling, mutations)
store/ # Zustand stores + AsyncStorage/SecureStore helpers
lib/ # Types, utils, constants, HTTP client, Wake-on-LAN
plugins/ # Custom Expo config plugins (Android signing)
| Layer | Technology |
|---|---|
| Framework | Expo SDK 54 (React Native 0.81) |
| Routing | Expo Router v6 |
| Styling | NativeWind v4 (Tailwind CSS) |
| Data fetching | TanStack Query v5 |
| State management | Zustand v5 |
| Secure storage | expo-secure-store |
| Icons | lucide-react-native |
| Language | TypeScript (strict mode) |
See TODO.md for planned features and ideas.
Contributions are welcome! Feel free to open issues and pull requests.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Dashboarr is free and open source under GPL-3.0. If you find it useful, you can support continued development on Ko-fi:
Every coffee helps cover Apple Developer fees and time spent adding new services!
This project is open source. See the LICENSE file for details.
- nzb360 — The original inspiration for this project
- The *arr stack community for building incredible self-hosted media tools