mirror of
https://github.com/plexguide/Huntarr.io.git
synced 2026-02-20 07:44:17 -05:00
- Rewrote CSS with glassmorphism dark theme matching the app - Rewrote JS with mobile sidebar, collapsible nav, copy buttons, scroll-to-top - Created 30 HTML pages covering all features: Getting Started, Apps (7), Movie Hunt (4), NZB Hunt, Requestarr, Settings (6), System (3), Help (3) - Removed 13 obsolete files (eros, whisparr-v2/v3, old root pages, stale markdown) - New responsive layout with mobile hamburger drawer - Updated README with new structure map
Huntarr Documentation
This is the documentation site for Huntarr, served via GitHub Pages.
Structure
docs/
├── index.html # Landing page
├── css/main.css # Shared stylesheet
├── js/main.js # Shared JavaScript
├── images/ # Logos and app icons
├── getting-started/
│ ├── installation.html # Docker, Unraid, source install
│ ├── setup-wizard.html # First-launch wizard walkthrough
│ └── first-steps.html # Quick start guide
├── apps/
│ ├── index.html # App connections overview
│ ├── sonarr.html
│ ├── radarr.html
│ ├── lidarr.html
│ ├── readarr.html
│ ├── whisparr.html
│ ├── prowlarr.html
│ └── swaparr.html
├── movie-hunt/
│ ├── index.html # Movie Hunt overview
│ ├── media-collection.html
│ ├── indexers-clients.html
│ └── profiles.html
├── nzb-hunt/
│ └── index.html # NZB Hunt overview
├── requestarr/
│ └── index.html # Requestarr overview
├── settings/
│ ├── index.html # Main settings
│ ├── scheduling.html
│ ├── notifications.html
│ ├── backup-restore.html
│ ├── log-settings.html
│ └── user-account.html
├── system/
│ ├── hunt-manager.html
│ ├── logs.html
│ └── api.html # API reference
└── help/
├── faq.html
├── community.html
└── donate.html
Development
This is a plain HTML static site — no build step required. Open any HTML file directly in a browser or serve with a simple HTTP server:
cd docs
python -m http.server 8000
Then visit http://localhost:8000.
GitHub Pages
The site is deployed automatically from the docs/ folder on the main branch. The .nojekyll file ensures GitHub Pages serves the files as-is without Jekyll processing.