2021-01-11 16:09:30 +00:00
![jfa-go ](images/banner.svg )
2021-02-17 20:52:49 +00:00
[![Build Status ](https://drone.hrfee.dev/api/badges/hrfee/jfa-go/status.svg?ref=refs/heads/main )](https://drone.hrfee.dev/hrfee/jfa-go)
2021-01-11 16:09:30 +00:00
[![Docker Hub ](https://img.shields.io/docker/pulls/hrfee/jfa-go?label=docker )](https://hub.docker.com/r/hrfee/jfa-go)
2021-01-17 20:02:02 +00:00
[![Translation status ](https://weblate.hrfee.pw/widgets/jfa-go/-/svg-badge.svg )](https://weblate.hrfee.pw/engage/jfa-go/)
2021-03-02 01:30:08 +00:00
##### Downloads:
2021-05-25 00:33:58 +00:00
##### [docker](#docker) | [debian/ubuntu](#debian) | [arch (aur)](#aur) | [other platforms](#other-platforms)
2021-01-11 16:09:30 +00:00
---
2021-01-10 16:00:26 +00:00
jfa-go is a user management app for [Jellyfin ](https://github.com/jellyfin/jellyfin ) (and now [Emby ](https://emby.media/ )) that provides invite-based account creation as well as other features that make one's instance much easier to manage.
2020-08-18 14:47:03 +00:00
2021-05-25 16:59:41 +00:00
a rewrite of [jellyfin-accounts ](https://github.com/hrfee/jellyfin-accounts ) (original naming for both, ik
😂).
2020-08-18 14:47:03 +00:00
#### Features
2021-05-25 00:33:58 +00:00
* 🧑 Invite based account creation: Send invites to your friends or family, and let them choose their own username and password without relying on you.
2020-08-18 14:47:03 +00:00
* Send invites via a link and/or email
* Granular control over invites: Validity period as well as number of uses can be specified.
2020-09-24 22:57:42 +00:00
* Account profiles: Assign settings profiles to invites so new users have your predefined permissions, homescreen layout, etc. applied to their account on creation.
2020-08-18 14:47:03 +00:00
* Password validation: Ensure users choose a strong password.
2021-03-26 23:13:19 +00:00
* ⌛ User expiry: Specify a validity period, and new users accounts will be disabled/deleted after it. The period can be manually extended too.
2020-09-05 16:59:20 +00:00
* 🔗 Ombi Integration: Automatically creates Ombi accounts for new users using their email address and login details, and your own defined set of permissions.
2020-09-19 15:38:53 +00:00
* Account management: Apply settings to your users individually or en masse, and delete users, optionally sending them an email notification with a reason.
2021-05-23 21:41:39 +00:00
* Telegram & Discord Integration: Verify users via a Telegram or Discord bot, and send Password Resets, Announcements, etc. through it.
2020-09-24 22:57:42 +00:00
* 📨 Email storage: Add your existing users email addresses through the UI, and jfa-go will ask new users for them on account creation.
2020-08-18 14:47:03 +00:00
* Email addresses can optionally be used instead of usernames
2021-05-07 22:18:44 +00:00
* 🔑 Password resets: When users forget their passwords and request a change in Jellyfin, jfa-go reads the PIN from the created file and sends it straight to the user via email/telegram.
2020-08-18 14:47:03 +00:00
* Notifications: Get notified when someone creates an account, or an invite expires.
2021-05-07 22:18:44 +00:00
* 📣 Announcements: Bulk message your users with announcements about your server.
2020-08-18 14:47:03 +00:00
* Authentication via Jellyfin: Instead of using separate credentials for jfa-go and Jellyfin, jfa-go can use it as the authentication provider.
* Enables the usage of jfa-go by multiple people
2021-04-24 17:54:31 +00:00
* 🌓 Customizations
* Customize emails with variables and markdown
2020-08-18 14:47:03 +00:00
* Specify contact and help messages to appear in emails and pages
* Light and dark themes available
2021-01-11 16:09:30 +00:00
#### Interface
2020-08-18 14:47:03 +00:00
< p align = "center" >
2021-01-05 18:16:23 +00:00
< img src = "images/demo.gif" width = "100%" > < / img >
2020-08-18 14:47:03 +00:00
< / p >
< p align = "center" >
2021-03-20 19:04:26 +00:00
< img src = "images/invites.png" width = "31%" style = "margin-left: 1.5%;" alt = "Invites tab" > < / img >
< img src = "images/accounts.png" width = "31%" style = "margin-right: 1.5%;" alt = "Accounts tab" > < / img >
< img src = "images/create.png" width = "31%" style = "margin-right: 1.5%;" alt = "Accounts creation" > < / img >
2020-08-18 14:47:03 +00:00
< / p >
2020-08-02 01:11:50 +00:00
2020-08-03 19:10:45 +00:00
#### Install
2020-08-19 11:31:16 +00:00
2021-05-24 21:58:11 +00:00
**Note**: `TrayIcon` builds include a tray icon to start/stop/restart, and an option to automatically start when you log-in to your computer. For Linux users, these builds depend on the `libappindicator3-1` /`libappindicator-gtk3`/`libappindicator` package for Debian/Ubuntu, Fedora, and Alpine respectively.
##### [Docker](https://hub.docker.com/r/hrfee/jfa-go)
2021-02-19 16:12:14 +00:00
```sh
2020-08-03 19:10:45 +00:00
docker create \
--name "jfa-go" \ # Whatever you want to name it
-p 8056:8056 \
2021-01-15 18:57:12 +00:00
# -p 8057:8057 if using tls
2020-09-13 22:32:00 +00:00
-v /path/to/.config/jfa-go:/data \ # Path to wherever you want to store the config file and other data
2021-03-18 16:47:13 +00:00
-v /path/to/jellyfin:/jf \ # Path to Jellyfin config directory, ignore if using Emby
2020-08-03 19:10:45 +00:00
-v /etc/localtime:/etc/localtime:ro \ # Makes sure time is correct
2020-09-15 11:23:43 +00:00
hrfee/jfa-go # hrfee/jfa-go:unstable for latest build from git
2020-08-03 19:10:45 +00:00
```
2021-05-23 22:49:48 +00:00
2021-05-25 00:33:58 +00:00
##### [Debian/Ubuntu](https://apt.hrfee.dev)
2021-05-24 19:30:31 +00:00
```sh
2021-05-24 17:37:26 +00:00
sudo apt-get update & & sudo apt-get install curl apt-transport-https gnupg
curl https://apt.hrfee.dev/hrfee.pubkey.gpg | sudo apt-key add -
2021-05-24 18:53:53 +00:00
# For stable releases
2021-05-24 17:37:26 +00:00
echo "deb https://apt.hrfee.dev trusty main" | sudo tee /etc/apt/sources.list.d/hrfee.list
2021-05-24 21:58:11 +00:00
# ------
2021-05-24 18:53:53 +00:00
# For unstable releases
echo "deb https://apt.hrfee.dev trusty-unstable main" | sudo tee /etc/apt/sources.list.d/hrfee.list
2021-05-24 21:58:11 +00:00
# ------
2021-05-24 17:37:26 +00:00
2021-05-24 18:53:53 +00:00
sudo apt-get update
2021-05-24 21:58:11 +00:00
# For servers
sudo apt-get install jfa-go
# ------
# For desktops/servers with GUI (has dependencies)
sudo apt-get install jfa-go-tray
# ------
2021-05-24 17:37:26 +00:00
```
2021-02-19 16:12:14 +00:00
2021-05-24 21:58:11 +00:00
##### Arch
Available on the AUR as:
* [jfa-go ](https://aur.archlinux.org/packages/jfa-go/ ) (stable)
* [jfa-go-bin ](https://aur.archlinux.org/packages/jfa-go ) (pre-compiled, stable)
* [jfa-go-git ](https://aur.archlinux.org/packages/jfa-go-git/ ) (nightly)
##### Other platforms
Download precompiled binaries from:
* [The releases section ](https://github.com/hrfee/jfa-go/releases ) (stable)
* [Buildrone ](https://builds.hrfee.dev/view/hrfee/jfa-go ) (nightly)
unzip the `jfa-go` /`jfa-go.exe` executable to somewhere useful.
2021-02-19 16:12:14 +00:00
* For \*nix/macOS users, `chmod +x jfa-go` then place it somewhere in your PATH like `/usr/bin` .
Run the executable to start.
2020-08-18 14:47:03 +00:00
#### Build from source
2020-10-23 13:39:04 +00:00
If you're using docker, a Dockerfile is provided that builds from source.
2020-08-18 14:47:03 +00:00
2020-10-23 13:39:04 +00:00
Otherwise, full build instructions can be found [here ](https://github.com/hrfee/jfa-go/wiki/Build ).
2020-08-18 14:47:03 +00:00
2020-08-03 19:10:45 +00:00
#### Usage
2020-08-18 14:47:03 +00:00
Simply run `jfa-go` to start the application. A setup wizard will start on `localhost:8056` (or your own specified address). Upon completion, refresh the page.
2020-08-02 01:11:50 +00:00
```
2021-05-24 21:58:11 +00:00
Usage of jfa-go:
start
start jfa-go as a daemon and run in the background.
stop
stop a daemonized instance of jfa-go.
systemd
generate a systemd .service file.
-config, -c string
alternate path to config file. (default "/home/hrfee/.config/jfa-go/config.ini")
-data, -d string
alternate path to data directory. (default "/home/hrfee/.config/jfa-go")
2020-09-19 15:38:53 +00:00
-debug
2021-05-24 21:58:11 +00:00
Enables debug logging.
-help, -h
prints this message.
2020-08-02 01:11:50 +00:00
-host string
alternate address to host web ui on.
2021-05-24 21:58:11 +00:00
-port, -p int
2020-08-02 01:11:50 +00:00
alternate port to host web ui on.
2021-05-24 21:58:11 +00:00
-pprof
Exposes pprof profiler on /debug/pprof.
2020-09-24 22:57:42 +00:00
-swagger
Enable swagger at /swagger/index.html
2020-08-02 01:11:50 +00:00
```
2021-04-24 17:54:31 +00:00
#### Systemd
jfa-go does not run as a daemon by default. Run `jfa-go systemd` to create a systemd `.service` file in your current directory, which you can copy into `~/.config/systemd/user` or somewhere else.
---
2020-08-18 14:47:03 +00:00
If you're switching from jellyfin-accounts, copy your existing `~/.jf-accounts` to:
2020-08-01 20:20:02 +00:00
2020-09-29 22:36:28 +00:00
* `XDG_CONFIG_DIR/jfa-go` (usually ~/.config/jfa-go) on \*nix systems,
2020-08-01 20:20:02 +00:00
* `%AppData%/jfa-go` on Windows,
* `~/Library/Application Support/jfa-go` on macOS.
2020-09-29 22:36:28 +00:00
(or specify config/data path with `-config/-data` respectively.)
2021-01-11 16:09:30 +00:00
#### Contributing
See [CONTRIBUTING.md ](https://github.com/hrfee/jfa-go/blob/main/CONTRIBUTING.md ).
2021-01-17 20:02:02 +00:00
##### Translation
[![Translation status ](https://weblate.hrfee.pw/widgets/jfa-go/-/multi-auto.svg )](https://weblate.hrfee.pw/engage/jfa-go/)
For translations, use the weblate instance [here ](https://weblate.hrfee.pw/engage/jfa-go/ ). You can login with github.