Web Client for Jellyfin
Go to file
2020-05-06 17:02:56 +03:00
.ci remove indentation from ci file 2020-04-13 01:02:19 +09:00
.copr Add COPR makefile link 2020-03-24 01:45:32 -04:00
.dependabot Add dependabot config 2020-05-01 08:35:17 +02:00
.github Merge branch 'master' into codeowners 2020-05-01 18:04:07 +09:00
debian update links 2020-04-19 20:29:30 +09:00
deployment Update deployment/Dockerfile.fedora.all 2020-04-29 14:14:49 -04:00
fedora update links 2020-04-19 20:29:30 +09:00
scripts add a folder for useful scripts 2020-01-20 10:38:53 +09:00
src Translated using Weblate (Ukrainian) 2020-05-05 18:10:07 -04:00
.editorconfig Add JSON to EditorConfig 2020-04-25 14:05:29 +02:00
.eslintignore Update eslintignore 2020-04-25 14:05:01 +02:00
.eslintrc.js Force the use of single quotes 2020-05-04 12:44:12 +02:00
.gitattributes Add more filetypes to gitattributes 2020-04-25 15:02:42 +02:00
.gitignore Merge branch 'master' into improve-builds 2020-04-09 12:17:51 -04:00
.npmignore Azure pipelines (#470) 2019-09-19 14:35:30 -04:00
.stylelintrc Add missing final newlines 2020-02-22 11:47:03 -05:00
build.sh Remove copy-pasta comments 2020-04-09 12:14:21 -04:00
build.yaml Add CentOS to build.yaml 2020-03-24 01:13:10 -04:00
bump_version Update bump_version 2020-04-25 22:15:38 -04:00
CONTRIBUTORS.md download button only if permission 2020-05-02 00:57:51 +05:30
gulpfile.js Force the use of single quotes 2020-05-04 12:44:12 +02:00
LICENSE First separation commit. 2019-01-09 12:36:54 +01:00
package.json Merge pull request #1187 from jellyfin/dependabot/npm_and_yarn/stylelint-13.3.3 2020-05-06 14:34:15 +09:00
postcss.config.js Use root build config 2020-05-06 17:02:56 +03:00
README.md update build process in readme 2020-03-17 01:27:14 +09:00
webpack.common.js Force the use of single quotes 2020-05-04 12:44:12 +02:00
webpack.dev.js Use root build config 2020-05-06 17:02:56 +03:00
webpack.prod.js Use root build config 2020-05-06 17:02:56 +03:00
yarn.lock Merge pull request #1187 from jellyfin/dependabot/npm_and_yarn/stylelint-13.3.3 2020-05-06 14:34:15 +09:00

Jellyfin Web

Part of the Jellyfin Project


Logo Banner

GPL 2.0 License Current Release Translation Status
Donate Feature Requests Discuss on our Forum Chat on Matrix Join our Subreddit

Jellyfin Web is the frontend used for most of the clients available for end users, such as desktop browsers, Android, and iOS. 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. Translations can be improved very easily from our Weblate instance. Look through the following graphic to see if your native language could use some work!

Detailed Translation Status

Build Process

Dependencies

  • Yarn
  • Gulp-cli

Getting Started

  1. Clone or download this repository.

    git clone https://github.com/jellyfin/jellyfin-web.git
    cd jellyfin-web
    
  2. Install build dependencies in the project directory.

    yarn install
    
  3. Run the web client with webpack for local development.

    yarn serve
    
  4. Build the client with sourcemaps.

    yarn build:development
    

    You can build a nginx compatible version as well.

    yarn build:standalone