Interface: RegistryAliasEntry¶
Defined in: core/src/types/registries.ts:4
Extended registry alias entry for monorepos or custom roots.
Properties¶
fallbackUrl?¶
optionalfallbackUrl?:string
Defined in: core/src/types/registries.ts:18
Fallback Git URL to try when the primary url fails with an auth error. Useful when registries reference HTTPS URLs but the user authenticates via SSH (or vice versa).
Example¶
registries:
'@acme':
url: 'https://github.com/acme/standards.git'
fallbackUrl: 'git@github.com:acme/standards.git'
root?¶
optionalroot?:string
Defined in: core/src/types/registries.ts:20
Base path within the repository
timeout?¶
optionaltimeout?:number
Defined in: core/src/types/registries.ts:33
Maximum wall-clock time in milliseconds for each Git operation (clone, fetch, ls-remote) against this repository. Defaults to 60000; can also be raised globally via PROMPTSCRIPT_GIT_TIMEOUT.
Example¶
registries:
'@internal':
url: 'git@gitlab.internal.com:company/monorepo'
root: 'packages/promptscript'
timeout: 600000
url¶
url:
string
Defined in: core/src/types/registries.ts:6
Git repository URL (HTTPS or SSH)