A modern web client for Jellyfin based on Vue
Go to file
Julien Machiels 4b3f90250b
Merge pull request #573 from jellyfin/api-keyz
feat(apikeys settings): add settings page for managing API keys
2021-01-16 16:28:32 +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(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 refactor(global styles): move capitalize first letter into global stylesheet 2021-01-16 12:23:40 +00:00
components Merge pull request #573 from jellyfin/api-keyz 2021-01-16 16:28:32 +01:00
layouts feat(music): create full screen music player 2021-01-14 13:20:33 +01:00
locales Merge pull request #573 from jellyfin/api-keyz 2021-01-16 16:28:32 +01:00
middleware style(lint): add JSDoc rule for requiring hyphen before params 2021-01-05 19:57:39 +00:00
mixins test(formshelper): add tests for forms helper 2021-01-14 16:35:18 +00:00
pages Merge pull request #573 from jellyfin/api-keyz 2021-01-16 16:28:32 +01:00
plugins fix(fix build): add ts-ignore 2021-01-15 11:23:16 +00:00
schemes feat(jellyfinscheme): clear all stores at logout 2021-01-14 16:44:20 +01:00
static feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
store Merge pull request #284 from jellyfin/YourAWizardHarry 2021-01-15 15:13:36 +01:00
utils fix(card): fix link for PhotoAlbum items 2021-01-14 23:54:55 +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(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 test(settings page): add tests for settings page 2021-01-13 00:01:06 +00:00
jest.setup.ts test(settings page): add tests for settings page 2021-01-13 00:01:06 +00: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 fix(norwegian_locale): change the i18n locale.name for nb-NO 2021-01-15 16:25:08 +01:00
package.json Merge pull request #572 from jellyfin/dependabot/npm_and_yarn/husky-4.3.8 2021-01-16 01:17:07 +01:00
README.md docs(readme): add codecov to readme 2021-01-08 12:36:33 +00:00
stylelint.config.js feat(dark-theme): add dark theme colors 2021-01-09 11:36:43 +01: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 #572 from jellyfin/dependabot/npm_and_yarn/husky-4.3.8 2021-01-16 01:17:07 +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