Jellyfin Forum
Is vue still something? - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Development (https://forum.jellyfin.org/f-development)
+--- Forum: Web Development (https://forum.jellyfin.org/f-web-development)
+--- Thread: Is vue still something? (/t-is-vue-still-something)



Is vue still something? - 34626 - 2024-01-04

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..


RE: Is vue still something? - mcarlton00 - 2024-01-04

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.


RE: Is vue still something? - 34626 - 2024-01-05

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..


RE: Is vue still something? - ferferga - 2024-01-11

Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue?tab=readme-ov-file#docker-container-

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

All accessibility improvements there are welcome!


RE: Is vue still something? - Delath - 2024-02-26

(2024-01-11, 12:11 PM)ferferga Wrote: Hello Vue maintainer here. It's stated in the README: https://github.com/jellyfin/jellyfin-vue?tab=readme-ov-file#docker-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!