Files
jellyfin.org/README.md
T

50 lines
1.5 KiB
Markdown
Raw Normal View History

2022-08-23 10:06:54 -04:00
<h1 align="center">jellyfin.org</h1>
<h3 align="center">Part of the <a href="https://jellyfin.org">Jellyfin Project</a></h3>
---
<p align="center">
<img alt="Logo Banner" src="https://raw.githubusercontent.com/jellyfin/jellyfin-ux/master/branding/SVG/banner-logo-solid.svg?sanitize=true"/>
</p>
The next generation of the official Jellyfin website.
The goal of this project is to combine all website on jellyfin.org in a single codebase and improve the documentation site experience.
This project includes a combination of content from:
- [jellyfin-blog](https://github.com/jellyfin/jellyfin-blog) &mdash; The current source for the main website and blog content built using Hugo.
- [jellyfin-docs](https://github.com/jellyfin/jellyfin-docs) &mdash; The current source for the documentation content built using DocFX.
2021-05-06 09:16:19 +02:00
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
## Installation
```console
2022-08-23 10:06:54 -04:00
npm install
2021-05-06 09:16:19 +02:00
```
## Local Development
2025-08-14 15:32:54 +00:00
To run locally, please use:
2021-05-06 09:16:19 +02:00
```console
2022-08-23 10:06:54 -04:00
npm start
2021-05-06 09:16:19 +02:00
```
2025-08-14 15:32:54 +00:00
To run within a dev container we have to instruct the build-in hostcheck to bind against all addresses:
```console
npm run start -- --host 0.0.0.0
```
2021-05-06 09:16:19 +02:00
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
## Build
```console
2022-08-23 10:06:54 -04:00
npm run build
2021-05-06 09:16:19 +02:00
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.