1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add directory structure to README

This commit is contained in:
Bill Thornton 2022-10-20 02:16:17 -04:00
parent 496761757b
commit 62a1e4a090

View file

@ -70,3 +70,26 @@ Jellyfin Web is the frontend used for most of the clients available for end user
```sh ```sh
npm run build:development npm run build:development
``` ```
## Directory Structure
```
.
└── src
├── assets # Static assets
├── components # Higher order visual components and React components
├── controllers # Legacy page views and controllers 🧹
├── elements # Basic webcomponents and React wrappers 🧹
├── legacy # Polyfills for legacy browsers
├── libraries # Third party libraries 🧹
├── plugins # Client plugins
├── routes # React routes/pages
├── scripts # Random assortment of visual components and utilities 🐉
├── strings # Translation files
├── styles # Common app Sass stylesheets
├── themes # CSS themes
└── utils # Utility functions
```
- 🧹 — Needs cleanup
- 🐉 — Serious mess (Here be dragons)