Add project configuration and initial documentation files

- Introduced `archdoc.toml` configuration file for project settings, including scanning and analysis options.
- Created initial `ARCHITECTURE.md` file with project summary and structure.
- Generated documentation files for source files and modules, including placeholders for future content.
- Updated the documentation generation logic to handle new project structure and file paths.
This commit is contained in:
2026-01-25 20:44:24 +03:00
parent df50701764
commit 3ffe5e235f
16 changed files with 305 additions and 4 deletions

View File

@@ -249,7 +249,7 @@ impl Renderer {
// Collect layout information from files
let mut layout_items = Vec::new();
for (file_id, file_doc) in &model.files {
for (_file_id, file_doc) in &model.files {
layout_items.push(serde_json::json!({
"path": file_doc.path,
"purpose": "Source file",