2021-06-29 23:23:05 +00:00
<!DOCTYPE html>
< html lang = "en" class = "light-theme" >
< head >
< link rel = "stylesheet" type = "text/css" href = "bundle.css" >
2021-06-30 00:16:51 +00:00
< link rel = "stylesheet" type = "text/css" href = "modal.css" >
2021-06-29 23:23:05 +00:00
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
< meta name = "Description" content = "jfa-go, a better way to manage Jellyfin users." >
< meta name = "color-scheme" content = "dark light" >
2021-06-30 00:16:51 +00:00
< link rel = "apple-touch-icon" sizes = "180x180" href = "/apple-touch-icon.png" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "/favicon-32x32.png" >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "/favicon-16x16.png" >
< link rel = "manifest" href = "/site.webmanifest" >
< link rel = "mask-icon" href = "/safari-pinned-tab.svg" color = "#5bbad5" >
2021-06-29 23:23:05 +00:00
< meta name = "msapplication-TileColor" content = "#603cba" >
< meta name = "theme-color" content = "#ffffff" >
< title > jfa-go - a better way to manage Jellyfin users< / title >
< / head >
< body class = "max-w-full overflow-x-hidden section" >
< div id = "modal-deb" class = "modal" >
< div class = "modal-content wide card ~neutral" >
< span class = "heading" > Debian/Ubuntu (apt)< / span >
2021-06-30 17:25:51 +00:00
< div class = "mt-1" >
< pre style = "margin: 0; line-height: 125%" > curl https://apt.hrfee.dev/hrfee.pubkey.gpg | sudo apt-key add -
2021-06-29 23:23:05 +00:00
2021-06-30 17:25:51 +00:00
echo < span style = "color: #aa5500" > " deb https://apt.hrfee.dev trusty< span id = "deb-unstable" class = "unfocused" > -unstable< / span > main" < / span > | sudo tee /etc/apt/sources.list.d/hrfee.list
2021-06-29 23:23:05 +00:00
sudo apt-get update
2021-06-30 17:25:51 +00:00
< span style = "color: #aaaaaa; font-style: italic" > # For servers< / span >
2021-06-29 23:23:05 +00:00
sudo apt-get install jfa-go
2021-06-30 17:25:51 +00:00
< span style = "color: #aaaaaa; font-style: italic" > # ------< / span >
< span style = "color: #aaaaaa; font-style: italic" > # For desktops/servers with GUI (has dependencies)< / span >
2021-06-29 23:23:05 +00:00
sudo apt-get install jfa-go-tray
2021-06-30 17:25:51 +00:00
< span style = "color: #aaaaaa; font-style: italic" > # ------< / span > < / pre >
< / div >
2021-06-29 23:23:05 +00:00
< / div >
< / div >
< div id = "modal-docker" class = "modal" >
< div class = "modal-content wide card ~neutral" >
< span class = "heading" > Docker< / span >
2021-06-30 17:25:51 +00:00
< div class = "mt-1" >
< pre style = "margin: 0; line-height: 125%" > docker create < span style = "color: #BB6622; font-weight: bold" > \< / span >
--name < span style = "color: #BA2121" > " jfa-go" < / span > < span style = "color: #BB6622; font-weight: bold" > \ < / span > < span style = "color: #408080; font-style: italic" > # Whatever you want to name it< / span >
-p 8056:8056 < span style = "color: #BB6622; font-weight: bold" > \< / span >
< span style = "color: #408080; font-style: italic" > # -p 8057:8057 if using tls< / span >
-v /path/to/.config/jfa-go:/data < span style = "color: #BB6622; font-weight: bold" > \ < / span > < span style = "color: #408080; font-style: italic" > # Path to wherever you want to store the config file and other data< / span >
-v /path/to/jellyfin:/jf < span style = "color: #BB6622; font-weight: bold" > \ < / span > < span style = "color: #408080; font-style: italic" > # Path to Jellyfin config directory, ignore if using Emby< / span >
-v /etc/localtime:/etc/localtime:ro < span style = "color: #BB6622; font-weight: bold" > \ < / span > < span style = "color: #408080; font-style: italic" > # Makes sure time is correct< / span >
hrfee/jfa-go< span id = "docker-unstable" class = "unfocused" > :unstable< / span > < / pre >
< / div >
2021-06-29 23:23:05 +00:00
< / div >
< / div >
< div class = "page-container" id = "page-container" >
< div class = "card ~neutral !low mb-1" >
< div class = "row col flex center" >
< span class = "heading welcome" > jellyfin-accounts (go)< / span >
< / div >
< div class = "row col flex center" >
< p class = "content" > a better way to manage your Jellyfin users.< / p >
< / div >
< span class = "row col flex center supra" > links< / span >
< div class = "row col flex center" >
< a class = "button ~info mr-half mt-1 mb-1" href = "https://github.com/hrfee/jfa-go" > github< / a >
< a class = "button ~urge mt-1 mb-1 mr-half" href = "https://wiki.jfa-go.com" > wiki/docs< / a >
2021-06-30 17:06:31 +00:00
< a class = "button ~positive mt-1 mb-1 mr-half" href = "https://weblate.jfa-go.com" > translation< / a >
2021-06-29 23:23:05 +00:00
< / div >
< p class = "row col flex center supra" > downloads< / p >
< p class = "row col flex center support" > instructions can be found& nbsp< a target = "_blank" href = "https://github.com/hrfee/jfa-go#install" > here< / a > < / p >
< p class = "row col flex center support" > note: tray icon builds on linux require extra dependencies, see the github README for more info.< / p >
< div class = "row col flex center" >
2021-07-09 15:09:23 +00:00
< span class = "button ~neutral !high mr-1 mt-1" id = "download-stable" > Stable< / span >
< span class = "button ~neutral mt-1 mr-1" id = "download-unstable" > Unstable< / span >
2021-06-29 23:23:05 +00:00
< / div >
2021-07-09 15:09:23 +00:00
< div class = "mt-1" id = "sect-stable" >
< p class = "row center" > Usually released once/twice every month, and aren't necessarily super stable.< / p >
< div class = "row col flex center" >
< a class = "button ~info mr-half mb-half lang-link" target = "_blank" href = "https://github.com/hrfee/jfa-go/releases" > windows/mac/linux< / a >
< a class = "button ~info mr-half mb-half lang-link" id = "download-docker" > docker< / a >
< a class = "button ~info mr-half mb-half lang-link" id = "download-deb" > debian/ubuntu< / a >
< a class = "button ~info mr-half mb-half lang-link" target = "_blank" href = "https://aur.archlinux.org/packages/jfa-go" > arch (aur)< / a >
< a class = "button ~info mr-half mb-half lang-link" target = "_blank" href = "https://aur.archlinux.org/packages/jfa-go-bin" > arch (aur binary)< / a >
< / div >
2021-06-29 23:23:05 +00:00
< / div >
2021-07-09 15:09:23 +00:00
< div class = "mt-1 unfocused" id = "sect-unstable" >
< p class = "row center" > These are built on every commit, so may include incomplete/broken features.< / p >
< div class = "row col flex center" >
< a class = "button ~info mr-half mb-half lang-link" target = "_blank" href = "https://dl.jfa-go.com/view/hrfee/jfa-go" > windows/mac/linux< / a >
< a class = "button ~info mr-half mb-half lang-link" id = "download-docker-unstable" > docker< / a >
< a class = "button ~info mr-half mb-half lang-link" id = "download-deb-unstable" > debian/ubuntu< / a >
< a class = "button ~info mr-half mb-half lang-link" target = "_blank" href = "https://aur.archlinux.org/packages/jfa-go-git" > arch (aur git)< / a >
< / div >
2021-06-29 23:23:05 +00:00
< / div >
< section class = "section ~neutral banner footer flex-expand middle" >
< a href = "https://github.com/hrfee/jfa-go/blob/main/LICENSE" class = "support" > © 2021 Harvey Tindall< / a >
< / section >
< / div >
< / div >
< script src = "main.js" > < / script >
< / body >
< / html >