mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +00:00
- Added `constants.mjs` defining `STORAGE_DIR` and `GRAPH_FILE`. - Replaced hard‑coded path strings in `agent.mjs`, `build_graph.mjs`, and `ingest.mjs` with imports from the new constants module. - Updated console log in `ingest.mjs` to reference `STORAGE_DIR`. - Adjusted `GRAPH_FILE` path to `./graphology/graph.json` via the constant.
2 lines
92 B
JavaScript
2 lines
92 B
JavaScript
export const STORAGE_DIR = './storage';
|
|
export const GRAPH_FILE = './graphology/graph.json'; |