Returns true when the old repo-local `TraceDecay` graph DB exists at this root.
(project_root: &Path)
| 347 | |
| 348 | /// Returns true when the old repo-local `TraceDecay` graph DB exists at this root. |
| 349 | pub fn has_project_database(project_root: &Path) -> bool { |
| 350 | project_root.join(TRACEDECAY_DIR).join(DB_FILENAME).exists() |
| 351 | } |
| 352 | |
| 353 | /// User-level data directory. Runtime storage is always rooted at |
| 354 | /// `~/.tracedecay` unless `TRACEDECAY_DATA_DIR` explicitly overrides it. |
no test coverage detected