A modern web client for Jellyfin based on Vue
Go to file
2020-12-13 08:51:09 +01: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(codeql): ignore scanning of generated files 2020-12-02 06:58:03 +01:00
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode fix(vscode): prevent i18n ally from inserting empty keys 2020-12-01 06:33:14 +01:00
api chore(api): update generated API to fix incorrect blushash models 2020-12-01 09:41:25 +01:00
assets fix(scroll bar): fix scroll bar color 2020-12-02 14:12:23 +01:00
components fix: remove request progress from progress reports & other fixes 2020-12-13 08:51:09 +01:00
layouts fix(default layout): fix duplicate keys in default layout 2020-12-05 20:45:26 +00:00
locales fix: remove request progress from progress reports & other fixes 2020-12-13 08:51:09 +01:00
middleware feat(login): add public users 2020-12-01 20:40:48 +01:00
mixins fix: remove request progress from progress reports & other fixes 2020-12-13 08:51:09 +01:00
pages fix: remove request progress from progress reports & other fixes 2020-12-13 08:51:09 +01:00
plugins Merge remote-tracking branch 'origin/master' into eye-candy 2020-12-05 21:07:14 +01:00
schemes refactor(login): move requests from login and server form to vuex 2020-11-29 20:59:10 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store refactor(user store): remove serverUrl from user store 2020-12-05 05:19:34 +01:00
utils docs(playback): add JSDoc comments for all misisng playback profile 2020-12-02 08:54:44 +01: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(all): fix issues with updated linting config 2020-11-14 19:44:35 +01: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
auth-fix.d.ts fix(tests): fix the tests failing 2020-11-09 16:56:03 +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 tests and coverage reporting 2020-10-01 10:39:03 +02:00
LICENSE feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
nuxt.config.ts Merge remote-tracking branch 'origin/master' into eye-candy 2020-12-05 21:07:14 +01:00
package.json Merge remote-tracking branch 'origin/master' into eye-candy 2020-12-05 21:07:14 +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 refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +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 remote-tracking branch 'origin/master' into eye-candy 2020-12-05 21:07:14 +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