Skip to content

Commit e8d8b20

Browse files
Address timon's feedback
1 parent 6f5cd4e commit e8d8b20

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ python app.py --base-dir /path/to/claude/projects
7171
> The server **refuses to start** if `--debug` is combined with a non-loopback `--host` (e.g. `0.0.0.0`).
7272
> That check runs only when you start the app with **`python app.py`** (not via `flask run` or other WSGI entrypoints).
7373
74-
#### Deployment WSGI workers
74+
#### Deployment: WSGI workers
7575

7676
The FTS search index (`utils/search_index.py`) assumes **a single Python process** serves the app:
7777

docs/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ The four primitives are **not nested arbitrarily**. New code must preserve this
191191

192192
The design targets **one WSGI worker process** (for example `python app.py` or `gunicorn --workers 1`). That gives one in-process writer thread, one advisory-lock owner, and consistent in-memory usability cache per operator session.
193193

194-
See [Deployment WSGI workers](../README.md#deployment-wsgi-workers) in the README for multi-worker warnings.
194+
See [Deployment: WSGI workers](../README.md#deployment-wsgi-workers) in the README for multi-worker warnings.
195195

196196
## What this codebase is not
197197

0 commit comments

Comments
 (0)