Top-level structure stored in ~/.codegraphcontext/config.yaml.
| 791 | |
| 792 | @dataclass |
| 793 | class ContextConfig: |
| 794 | """Top-level structure stored in ~/.codegraphcontext/config.yaml.""" |
| 795 | version: int = 1 |
| 796 | mode: str = "global" # global | per-repo | named |
| 797 | default_context: str = "" # used when mode=named and no --context flag |
| 798 | contexts: Dict[str, ContextInfo] = field(default_factory=dict) |
| 799 | |
| 800 | |
| 801 | def _default_db_path(context_name: str, database: str) -> str: |
no outgoing calls
no test coverage detected