From 4042b5bc1a2702dca37607c775487a2bfcb11f78 Mon Sep 17 00:00:00 2001 From: H5JKey <115498581+H5JKey@users.noreply.github.com> Date: Sat, 22 Aug 2026 23:35:00 +0300 Subject: [PATCH] docs: add frontend directory to repository structure --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8542567..9e9a559 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ PriZm is an open-source rendering platform that combines a physically based path ```text priZm/ -├── app/ # Python-based server infrastructure +├── app/ # Python-based server infrastructure │ ├── api/ # REST API endpoints │ ├── core/ # Core application logic │ ├── dependencies/ @@ -25,13 +25,15 @@ priZm/ │ ├── schemas/ # Data validation schemas │ └── services/ # Business logic services │ -└── renderer/ # C++ path tracing engine - ├── include/ # Public headers - ├── src/ # Implementation source files - ├── shaders/ # OpenGL shader programs sources - ├── lib/ # Third-party dependencies - ├── tests/ # Unit and integration tests - └── images/ # Example output renders +├── renderer/ # C++ path tracing engine +│ ├── include/ # Public headers +│ ├── src/ # Implementation source files +│ ├── shaders/ # OpenGL shader programs sources +│ ├── lib/ # Third-party dependencies +│ ├── tests/ # Unit and integration tests +│ └── images/ # Example output renders +│ +└── frontend/ ``` ---