diff --git a/.vscode/settings.json b/.vscode/settings.json index 8b241154..de639d68 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,12 @@ { "cSpell.words": [ "Namecheap", + "Organizr", "Xenial", + "Xmrig", "adduser", - "appdata", "ansiutf", + "appdata", "autodl", "bazarr", "blackhole", @@ -19,8 +21,9 @@ "duckdns", "emby", "ffmpeg", - "htop", + "filebrowser", "foss", + "htop", "htpasswd", "httprpc", "irssi", @@ -30,6 +33,7 @@ "letsencrypt", "liara", "libboost", + "librespeed", "libtorrent", "lidarr", "netdata", @@ -39,12 +43,14 @@ "nzbhydra", "nzbs", "ombi", + "overseerr", "pacman", "pastebin", "plex", "plexmediaserver", "plexupdate", "pyload", + "qbittorrent", "qrencode", "quassel", "radarr", diff --git a/docs/applications/overseerr.mdx b/docs/applications/overseerr.mdx new file mode 100644 index 00000000..95c45fce --- /dev/null +++ b/docs/applications/overseerr.mdx @@ -0,0 +1,53 @@ +--- +id: overseerr +title: Overseerr +sidebar_label: Overseerr +--- + +overseerr is a self-hosted web application that automatically gives your shared Plex or Emby users the ability to request content by themselves! overseerr can be linked to multiple TV Show and Movie DVR tools to create a seamless end-to-end experience for your users. + +## Initial Setup + +Installing overseerr is easy. Simply issue the following command from SSH: + +```bash main +sudo box install overseerr +``` + +This command will configure and install overseerr for your user. + +After installation, the files are stored in `/opt/overseerr` + +## Upgrading + +You can upgrade Overseerr by running the following command + +```bash +sudo box upgrade overseerr +``` + +## How to Access + +After installation, overseerr will be available at the following web address: `https:///overseerr`. + +In case you're not using nginx, you will find overseerr + +## Service Management + +The service file resides at: + +```bash +/etc/systemd/system/overseerr.service +``` + +import SystemdTabs from '../snippets/systemdtabs.mdx'; + + + +## Troubleshooting + +import Troubleshooting from '../snippets/troubleshooting.md'; + + + +Please refer to Overseerr's github project, the docs and Discord for any application-sepcific issues. \ No newline at end of file diff --git a/sidebars.js b/sidebars.js index 4cfb4475..ac1708cb 100644 --- a/sidebars.js +++ b/sidebars.js @@ -29,6 +29,7 @@ module.exports = { "applications/lidarr", "applications/medusa", "applications/ombi", + "applications/overseerr", "applications/sickchill", "applications/sickgear", "applications/sonarr", diff --git a/src/theme/Applications/index.js b/src/theme/Applications/index.js index 37a760d1..aab8434e 100644 --- a/src/theme/Applications/index.js +++ b/src/theme/Applications/index.js @@ -106,6 +106,10 @@ const data = [ title: "Organizr", url: "applications/organizr", }, + { + title: "Overseerr", + url: "applications/overseerr", + }, { title: "Plex", url: "applications/plex",