From 62a1e4a090a3d8c0de2ea80bc89e880b0fa4c994 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Thu, 20 Oct 2022 02:16:17 -0400 Subject: [PATCH] Add directory structure to README --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 6787dcc083..624f97f348 100644 --- a/README.md +++ b/README.md @@ -70,3 +70,26 @@ Jellyfin Web is the frontend used for most of the clients available for end user ```sh 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)