From 9f83cbca9e685c00e587b11de9b49c97f3373e2a Mon Sep 17 00:00:00 2001 From: TC Date: Mon, 8 Jun 2026 11:33:11 +1000 Subject: [PATCH] Correct file tree example --- README.md | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index e19a71f..ac17d90 100644 --- a/README.md +++ b/README.md @@ -93,23 +93,30 @@ npm run typecheck # Type-check (Node + browser configs) ## Project structure +The app and your manuscript are completely separate directories. + +**App (this repository):** ``` hohoff/ -├── src/ -│ ├── main/ Node process: file I/O, AI calls, IPC handlers -│ ├── preload/ contextBridge (renderer ↔ main) -│ └── renderer/ React UI (editor, chat, file tree, panels) -└── / Manuscript files (Markdown) - ├── Prologue.md - ├── Part I/ - │ └── *.md - ├── Part II/ … Part IV/ - ├── Epilogue.md - └── .hohoff/ App metadata (not manuscript content) - ├── order.json Custom file ordering - ├── session.json Persisted app state - ├── revisions/ Version history - └── Story Bible.md Reference file (optional) +└── src/ + ├── main/ Node process: file I/O, AI calls, IPC handlers + ├── preload/ contextBridge (renderer ↔ main) + └── renderer/ React UI (editor, chat, file tree, panels) +``` + +**Manuscript (anywhere on your machine, e.g. `~/Documents/My Novel/`):** +``` +My Novel/ +├── Prologue.md +├── Part I/ +│ └── *.md +├── Part II/ … Part IV/ +├── Epilogue.md +└── .hohoff/ App metadata (not manuscript content) + ├── order.json Custom file ordering + ├── session.json Persisted app state + ├── revisions/ Version history + └── Story Bible.md Reference file (optional) ``` ---