1export const dockerApproot = '/approot' 3export const deployEpPrefix = 'sep' 4export const ptnodeBin = 'ptnode' 5export const ptmBin = 'ptm' 6export const bisectWorktreePrefix = 'monor-bisect-' 7export const worktreesDir = 'ptworktrees' 8export const cowtshaWorktreePrefix = 'monor-cowtsha-' 9export const devWorktreePrefix = 'monor-wt-' 10export const devWtBranchPrefix = 'ocwt-' 11export const bisectHintCmd = (epRel: string, goodSha: string, testArg?: string) => 12 `ptm bisect "${epRel} runtests${testArg ? ` --test=${testArg}` : ''}" --good=${goodSha.slice(0, 10)}` 14// Cluster configuration paths (relative to monorepo root) 15export const klustersRelDir = 'pt0/klustersF' 16export const nodeportsRelDir = 'pt0/nodeportsF'