MCPcopy Create free account
hub / github.com/Louisym/MiniCC / run_setup

Function run_setup

src/setup.py:64–77  ·  view source on GitHub ↗
(cwd: Path | None = None, trusted: bool = True)

Source from the content-addressed store, hash-verified

62
63
64def run_setup(cwd: Path | None = None, trusted: bool = True) -> SetupReport:
65 root = cwd or Path(__file__).resolve().parent.parent
66 prefetches = [
67 start_mdm_raw_read(),
68 start_keychain_prefetch(),
69 start_project_scan(root),
70 ]
71 return SetupReport(
72 setup=build_workspace_setup(),
73 prefetches=tuple(prefetches),
74 deferred_init=run_deferred_init(trusted=trusted),
75 trusted=trusted,
76 cwd=root,
77 )

Callers 3

bootstrap_sessionMethod · 0.85
mainFunction · 0.85

Calls 6

start_mdm_raw_readFunction · 0.85
start_keychain_prefetchFunction · 0.85
start_project_scanFunction · 0.85
SetupReportClass · 0.85
build_workspace_setupFunction · 0.85
run_deferred_initFunction · 0.85

Tested by

no test coverage detected