A modern web client for Jellyfin based on Vue
Go to file
MrTimscampi 9259cb68c5 fix(tests): fix the tests failing
vue-shim.d.ts really doesn't like to be changed in any way
2020-11-09 16:56:03 +01:00
.ci ci(fix): force buildx builder to use docker-container driver, ensure correct default builder 2020-10-17 16:53:08 +00:00
.dependabot chore(dependabot): add config file 2020-09-16 16:03:27 +02: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
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode chore: improve readme and add contributing guide 2020-10-20 19:57:43 +02:00
api refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
assets feat(scrollbar): add global scrollbar styling 2020-11-06 00:15:34 +01:00
components refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
layouts refactor(connection-monitor): move to an icon in user info 2020-11-05 23:52:08 +01:00
locales refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
middleware feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
mixins feat(details): redesign item details 2020-10-22 19:31:43 +02:00
pages refactor: use mapGetters to access store getters 2020-10-28 23:16:42 +01:00
plugins refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
schemes refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
utils feat(player): add video playback 2020-10-19 23:55:58 +02: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 feat(eslint): add jsdoc rules 2020-09-06 21:29:05 +02:00
.gitattributes chore(git): add gitattributes file 2020-09-07 18:17:47 +02: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 refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
package.json refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +01:00
README.md chore: improve readme and add contributing guide 2020-10-20 19:57:43 +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 fix(tests): fix the tests failing 2020-11-09 16:56:03 +01:00
yarn.lock refactor(login): use custom nuxt auth scheme to handle login 2020-11-09 16:56:03 +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

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