• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Development Web Development Is vue still something?

     
    • 1 Vote(s) - 5 Average

    Is vue still something?

    Curious about the vue version
    34626
    Offline

    Member

    Posts: 172
    Threads: 36
    Joined: 2023 Jul
    Reputation: 0
    Country:Denmark
    #1
    2024-01-04, 08:19 PM
    Hi,
    Im curious about the vue project: https://github.com/jellyfin/jellyfin-vue/releases

    Im not a programmer and havent looked much into the project, but if, i'd like to test it, but is the following a jellyfin server or client? (I suppose server, since it uses docker).

    Why this has interest for me?
    Im legally blind, using Jellyfin especially to make it easier finding my media, but also for my son, and so he can watch movies when we are not home. Therefor i have interest in testing and giving feedback on the accessibility. I am aware that the project is still in it's very early stages, but adding accessibility later might be a bigger work, then if it's implemented early.

    There is also accessibility issues with the current Jellyfin, but id rather use my ressources and time on vue, if that's still on the roadmap? :-) 

    Would it be possible to get in touch with the devs on another way then github? E-mail is just so much easier for me..
    Serv: N5105 - 32GB RAM, 1 WD Red SA500 2TB, 2 8TB, 2 4TB WD Red Plus, LC-35U3-C-HUB
    OS: Debian
    Clients: Pi4 with LibreELEC + JellyCon and Jellyfin Media Player
    Network: 2 TP-Link AX23, OpenWRT mesh 802.11s and 1 Gbit
    mcarlton00
    Offline

    Kodi Addon Maintainer

    Posts: 145
    Threads: 1
    Joined: 2023 Sep
    Reputation: 9
    Country:United States
    #2
    2024-01-04, 08:48 PM
    Vue is an alternative web client, so you run the server in one container and vue in another one. It's still progressing, but as it's primarily driven by one person and everything is based on volunteer time it's moving a little slow for now.
    34626
    Offline

    Member

    Posts: 172
    Threads: 36
    Joined: 2023 Jul
    Reputation: 0
    Country:Denmark
    #3
    2024-01-05, 04:43 PM
    Thanks the the reply, it's not to rush on the project, i have full respect for volunteers work!

    Do you know how to get the jellyfin-vue docker up and running? I havent been able to find needed information, or else im using it wrong..
    Serv: N5105 - 32GB RAM, 1 WD Red SA500 2TB, 2 8TB, 2 4TB WD Red Plus, LC-35U3-C-HUB
    OS: Debian
    Clients: Pi4 with LibreELEC + JellyCon and Jellyfin Media Player
    Network: 2 TP-Link AX23, OpenWRT mesh 802.11s and 1 Gbit
    ferferga
    Offline

    Team Member

    Posts: 6
    Threads: 0
    Joined: 2023 Jun
    Reputation: 0
    #4
    2024-01-11, 12:11 PM (This post was last modified: 2024-01-11, 12:12 PM by ferferga. Edited 1 time in total.)
    Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue...-container-

    If there's something that do you think that could be worded better please let me know.

    All accessibility improvements there are welcome!
    [Image: ferferga?style=flat&logo=github]
    1
    Delath
    Offline

    Junior Member

    Posts: 8
    Threads: 2
    Joined: 2024 Feb
    Reputation: 0
    Country:Italy
    #5
    2024-02-26, 07:58 PM
    (2024-01-11, 12:11 PM)ferferga Wrote: Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue...-container-

    If there's something that do you think that could be worded better please let me know.

    All accessibility improvements there are welcome!

    Hi,
    First of all thanks for the work that has been done.
    I've been trying to get jellyfin without the base web client and with vue running in docker, i've come up with the following docker compose
    Code:
    version: '3.5'
    services:
      backend:
        image: jellyfin/jellyfin
        container_name: jellyfin-backend
        user: 999:1001
        network_mode: 'host'
        restart: 'unless-stopped'
        environment:
          - JELLYFIN_NOWEBCONTENT=true
        extra_hosts:
          - "host.docker.internal:host-gateway"
      frontend: # User does not need to be set because already specified in the Dockerfile
        image: jellyfin/jellyfin-vue:unstable
        container_name: jellyfin-frontend
        ports:
          - "8080:80"
        restart: 'unless-stopped'
    seems to work, but base jellyfin frontend is still accessible at port 8096 even with the JELLYFIN_NOWEBCONTENT=true specified..
    And jellyfin-vue doesn't have a proper setup wizard so i can't create the first user, not only that but even if i create the user on the default web client if i try to log in jellyfin-vue with that user it perma-loads.
    Can you share a working setup with the jellyfin server too for docker?
    Thanks!
    34626
    Offline

    Member

    Posts: 172
    Threads: 36
    Joined: 2023 Jul
    Reputation: 0
    Country:Denmark
    #6
    2024-08-11, 11:30 AM
    (2024-01-11, 12:11 PM)ferferga Wrote: Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue...-container-

    If there's something that do you think that could be worded better please let me know.

    All accessibility improvements there are welcome!

    Thanks for your work! - https://github.com/sponsors/ferferga?success=true
    Serv: N5105 - 32GB RAM, 1 WD Red SA500 2TB, 2 8TB, 2 4TB WD Red Plus, LC-35U3-C-HUB
    OS: Debian
    Clients: Pi4 with LibreELEC + JellyCon and Jellyfin Media Player
    Network: 2 TP-Link AX23, OpenWRT mesh 802.11s and 1 Gbit
    ferferga
    Offline

    Team Member

    Posts: 6
    Threads: 0
    Joined: 2023 Jun
    Reputation: 0
    #7
    2024-08-12, 09:11 AM
    (2024-08-11, 11:30 AM)34626 Wrote:
    (2024-01-11, 12:11 PM)ferferga Wrote: Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue...-container-

    If there's something that do you think that could be worded better please let me know.

    All accessibility improvements there are welcome!

    Thanks for your work! - https://github.com/sponsors/ferferga?success=true

    Thank you very much for your sponsoring! It's a huge motivation boost! 🚀
    Also, you're super welcome to open issues in the repository with all the accessibility issues that you find, so I'm aware of them (I'm still learning about WCAG in web development and I might miss some things). I regularly check this forum, but GH issues are directed to my inbox rightaway.
    [Image: ferferga?style=flat&logo=github]
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode