Update repository structure section in instructions

small readability improvement
This commit is contained in:
Frank Möhle
2026-04-05 14:32:43 +02:00
committed by GitHub
parent 1243c7b1fa
commit 4452a6c955

View File

@@ -47,8 +47,15 @@ For detailed build timeouts, development workflows, troubleshooting, and validat
<!-- HUMAN_ONLY_END --> <!-- HUMAN_ONLY_END -->
## Repository Structure ## Repository Structure
tl;dr: Firmware source: `wled00/` (C++). Web UI source: `wled00/data/`. Auto-generated headers: `wled00/html_*.h`**never edit or commit**. tl;dr:
Usermods: `usermods/` (`.h` files, included via `usermods_list.cpp`). Build targets: `platformio.ini`. CI/CD: `.github/workflows/`. * Firmware source: `wled00/` (C++).
* Build targets: `platformio.ini`.
* Web UI source: `wled00/data/`.
* Auto-generated headers: `wled00/html_*.h`**never edit or commit**.
* Usermods: `usermods/` (`.h` files, included via `usermods_list.cpp`).
* CI/CD: `.github/workflows/`.
Main development trunk: `mdev` branch. Make PRs against this branch.
<!-- HUMAN_ONLY_START --> <!-- HUMAN_ONLY_START -->
Detailed overview: Detailed overview:
@@ -73,7 +80,6 @@ package.json # Node.js scripts and release ID
.github/workflows/ # CI/CD pipelines .github/workflows/ # CI/CD pipelines
``` ```
<!-- HUMAN_ONLY_END --> <!-- HUMAN_ONLY_END -->
Main development branch: `mdev`
## General Guidelines ## General Guidelines