Harvey Tindall 6436dba48f fixed custom config and data paths
any specified custom data path was only being used for the config file.
All combinations of options should work together now.
2020-08-16 14:26:07 +01:00
2020-08-03 18:00:54 +01:00
2020-08-02 02:11:50 +01:00
2020-08-16 13:36:54 +01:00
2020-08-16 13:36:54 +01:00
2020-08-16 13:36:54 +01:00
2020-08-16 13:36:54 +01:00
2020-08-03 19:45:10 +01:00
2020-08-16 13:36:54 +01:00
2020-08-03 00:13:09 +01:00
2020-08-03 00:13:09 +01:00
2020-08-02 00:05:35 +01:00
2020-08-16 14:26:07 +01:00
2020-08-03 18:00:54 +01:00
2020-08-16 13:36:54 +01:00
2020-08-03 20:10:45 +01:00
2020-08-16 13:36:54 +01:00
2020-08-16 13:36:54 +01:00

jfa-go

A rewrite of jellyfin-accounts in Go. It has feature parity with the Python version, but should be faster.

Install

Grab an archive from the release section for your platform, and extract jfa-go and data to the same directory. Run the executable to start.

For docker, run:

docker create \
             --name "jfa-go" \ # Whatever you want to name it
             -p 8056:8056 \
             -v /path/to/.config/jfa-go:/data \ # Equivalent of ~/.jf-accounts
             -v /path/to/jellyfin:/jf \ # Path to jellyfin config directory
             -v /etc/localtime:/etc/localtime:ro \ # Makes sure time is correct
             hrfee/jfa-go

Usage

Usage of ./jfa-go:
  -config string
    	alternate path to config file. (default "~/.config/jfa-go/config.ini")
  -data string
    	alternate path to data directory. (default "~/.config/jfa-go")
  -host string
    	alternate address to host web ui on.
  -port int
    	alternate port to host web ui on.

To switch from jf-accounts, copy your existing ~/.jf-accounts to:

  • XDG_CONFIG_DIR/jfa-go (usually ~/.config) on *nix systems,
  • %AppData%/jfa-go on Windows,
  • ~/Library/Application Support/jfa-go on macOS.

(or specify config/data path with -config/-data respectively.)

This is the first time i've even touched Go, and the code is a mess, so help is very welcome.

S
Description
GrizzlyFlix-maintained jfa-go fork with signup and Seerr sync patches
Readme 37 MiB
Languages
Go 47.1%
TypeScript 39%
HTML 10.4%
JavaScript 1.1%
CSS 1.1%
Other 1.2%