.devcontainer | ||
.docker | ||
.github | ||
.husky | ||
.run | ||
.vscode | ||
assets | ||
components | ||
layouts | ||
locales | ||
middleware | ||
mixins | ||
pages | ||
plugins | ||
schemes | ||
static | ||
store | ||
utils | ||
.babelrc | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.prettierrc | ||
.yarnrc | ||
codecov.yml | ||
commitlint.config.js | ||
CONTRIBUTING.md | ||
Dockerfile | ||
Dockerfile.static | ||
jest.config.js | ||
jest.setup.ts | ||
LICENSE | ||
nuxt-i18n.d.ts | ||
nuxt.config.ts | ||
package.json | ||
README.md | ||
stylelint.config.js | ||
tsconfig.json | ||
vue-shims.d.ts | ||
yarn.lock |
Jellyfin Vue
Part of the Jellyfin Project
This is an experimental web client for Jellyfin based on Vue.js. We welcome all contributions and pull requests! If you have a larger feature in mind please open an issue so we can discuss the implementation before you start.
Requirements
This project uses Yarn as a package manager.
Contributing
We provide a devcontainer to help you setup your environment.
The project also contains recommended extensions for Visual Studio Code, which will help you with syntax style and development.
Finally, we provide useful pre-commit hooks via Husky, as well as Comitizen integration, in order to help you respect the style and naming conventions used throughout this project.
For more information about how to contribute to this project, see CONTRIBUTING.md
Pre-requirements
Jellyfin >=10.7.0
Build Process
# install dependencies
$ yarn install
# server with hot reload at localhost:3000
$ yarn dev
# serve with hot reload in static mode at localhost:3000
$ yarn dev:static
# build for production and launch server
$ yarn build
$ yarn start
# build for production in static mode
# you will need a web server to host the client
$ yarn build:static
Running standalone
When using the SSR version of the client, you can run the client in standalone mode in order to save space.
# install dependencies
$ yarn install
# build for production in standalone mode, with server-side rendering
$ yarn build --standalone
# move the server and required files to a dedicated directory
$ mkdir -p /opt/jellyfin-vue
$ cp .nuxt .docker/nuxt.config.js .docker/package.json /opt/jellyfin-vue
# install the required dependency and start the client
$ cd /opt/jellyfin-vue
$ yarn install
$ yarn start