Correct file tree example

This commit is contained in:
TC
2026-06-08 11:33:11 +10:00
parent 2c08147437
commit 9f83cbca9e

View File

@@ -93,23 +93,30 @@ npm run typecheck # Type-check (Node + browser configs)
## Project structure ## Project structure
The app and your manuscript are completely separate directories.
**App (this repository):**
``` ```
hohoff/ hohoff/
── src/ ── src/
├── main/ Node process: file I/O, AI calls, IPC handlers ├── main/ Node process: file I/O, AI calls, IPC handlers
├── preload/ contextBridge (renderer ↔ main) ├── preload/ contextBridge (renderer ↔ main)
└── renderer/ React UI (editor, chat, file tree, panels) └── renderer/ React UI (editor, chat, file tree, panels)
└── <your project folder>/ Manuscript files (Markdown) ```
├── Prologue.md
├── Part I/ **Manuscript (anywhere on your machine, e.g. `~/Documents/My Novel/`):**
│ └── *.md ```
├── Part II/ … Part IV/ My Novel/
├── Epilogue.md ├── Prologue.md
└── .hohoff/ App metadata (not manuscript content) ├── Part I/
├── order.json Custom file ordering │ └── *.md
├── session.json Persisted app state ├── Part II/ … Part IV/
├── revisions/ Version history ├── Epilogue.md
└── Story Bible.md Reference file (optional) └── .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)
``` ```
--- ---