From 2c0814743703f4e0f326ad0a025f89243bc0d508 Mon Sep 17 00:00:00 2001 From: TC Date: Mon, 8 Jun 2026 11:26:36 +1000 Subject: [PATCH] Update file structure --- README.md | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3676a88..e19a71f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Every save creates a versioned snapshot in `.hohoff/.revisions/`. The revisions ```bash git clone -cd hohoff/app +cd hohoff npm install ``` @@ -84,7 +84,6 @@ Configuration is stored in `~/.hohoff/config.json`. ## Development ```bash -cd app npm run dev # Electron dev server with hot reload npm run build # Production build npm run typecheck # Type-check (Node + browser configs) @@ -96,21 +95,20 @@ npm run typecheck # Type-check (Node + browser configs) ``` hohoff/ -├── app/ Electron application -│ └── src/ -│ ├── main/ Node process: file I/O, AI calls, IPC handlers -│ ├── preload/ contextBridge (renderer ↔ main) -│ └── renderer/ React UI (editor, chat, file tree, panels) -└── draft/ Manuscript files (Markdown) +├── 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 + ├── order.json Custom file ordering + ├── session.json Persisted app state + ├── revisions/ Version history └── Story Bible.md Reference file (optional) ```