Create/update index for the codebase.
()
| 613 | @app.command() |
| 614 | @_catch_daemon_start_error |
| 615 | def index() -> None: |
| 616 | """Create/update index for the codebase.""" |
| 617 | from . import client as _client |
| 618 | |
| 619 | project_root = str(require_project_root()) |
| 620 | print_project_header(project_root) |
| 621 | _run_index_with_progress(project_root) |
| 622 | print_index_stats(_client.project_status(project_root)) |
| 623 | |
| 624 | |
| 625 | @app.command() |
nothing calls this directly
no test coverage detected