A modern web client for Jellyfin based on Vue
Go to file
2020-12-31 12:04:56 +00:00
.ci build(actions): move lint to Github Actions 2020-11-27 12:23:06 +01:00
.devcontainer fix(devcontainer): move to suggested extensions, switch default shell to zsh 2020-09-03 18:13:14 +00:00
.docker fix(dockerfile): switch to nuxt build, nginx: enable compression, define MIME types, fix routing 2020-10-08 15:59:10 +00:00
.github ci(github): remove codecov fail if error 2020-12-25 23:54:06 +01:00
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode fix(settings): make everything translatable 2020-12-17 12:21:32 +01:00
assets fix(music-player): address review comments 2021-01-02 15:44:55 +01:00
components refactor(time utils): move getRuntime to function in timeutils 2020-12-31 12:04:56 +00:00
layouts refactor(force-return-types): address review comments 2021-01-02 15:56:16 +01:00
locales Translated using Weblate (Polish) 2021-01-07 19:15:54 -05:00
middleware style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
mixins refactor(time utils): move getRuntime to function in timeutils 2020-12-31 12:04:56 +00:00
pages Merge pull request #504 from jellyfin/fix-logout 2021-01-06 09:21:13 +01:00
plugins refactor(playback profile): move files to more relevant folders 2021-01-05 09:06:34 +00:00
schemes fix: set 'loggedIn' variable to false as soon as possible in the logout chain 2021-01-06 01:10:05 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store Merge pull request #504 from jellyfin/fix-logout 2021-01-06 09:21:13 +01:00
utils style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
.babelrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.dockerignore ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00:00
.editorconfig feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.eslintignore build(eslint): add more files to eslintignore 2020-09-04 17:23:18 +02:00
.eslintrc.js style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
.gitattributes chore(git): add merge attributes for locale files 2020-11-17 19:11:40 +01:00
.gitignore feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.prettierrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.yarnclean chore: add .yarnclean file 2021-01-04 19:44:51 +01:00
commitlint.config.js feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
CONTRIBUTING.md chore: improve readme and add contributing guide 2020-10-20 19:57:43 +02:00
Dockerfile ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00:00
Dockerfile.dev ci(fix): use build artifacts to speed up image generation 2020-10-15 18:41:24 +00:00
jest.config.js ci: add code coverage report 2020-12-21 00:44:07 +01:00
LICENSE feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
nuxt-i18n.d.ts refactor: override typings for $t and remove string casting 2021-01-02 15:55:37 +01:00
nuxt.config.ts chore: add @nuxtjs/imagemin to minimize images on production builds 2021-01-05 01:35:59 +01:00
package.json Merge pull request #513 from jellyfin/dependabot/npm_and_yarn/husky-4.3.7 2021-01-08 02:20:55 +01:00
README.md fix(login): show correct error message 2020-11-27 23:44:55 +02:00
stylelint.config.js feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
tsconfig.json fix(settings): fix non-admin page & suggestions 2020-12-17 12:21:32 +01:00
vue-shims.d.ts refactor(login): move requests from login and server form to vuex 2020-11-29 20:59:10 +01:00
yarn.lock Merge pull request #513 from jellyfin/dependabot/npm_and_yarn/husky-4.3.7 2021-01-08 02:20:55 +01:00

Jellyfin Vue

Part of the Jellyfin Project


Logo Banner

GPL 3.0 License Current Release Commitizen friendly
Donate Feature Requests Discuss on our Forum Chat on Matrix Join our Subreddit

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

# serve with hot reload at localhost:3000
$ yarn dev

# build for production and launch server
$ yarn build
$ yarn start

# generate static project
$ yarn generate