feat(install): default URLs from company.json, Confluence token setup, token hints

This commit is contained in:
Aleksey Shakhmatov
2026-08-06 14:43:17 +03:00
parent 8b273c9a72
commit f802f06930
2 changed files with 73 additions and 18 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ export default function kitCliExtension(pi: ExtensionAPI) {
}
// Env vars (presence only, never values)
for (const v of ["TRACKER_URL", "JIRA_TOKEN", "GITLAB_TOKEN"]) {
for (const v of ["TRACKER_URL", "JIRA_TOKEN", "CONFLUENCE_TOKEN", "GITLAB_TOKEN"]) {
lines.push((process.env[v] ? ok : warn)(`${v} ${process.env[v] ? "задан" : "не задан"}`));
}
const provider = PROVIDER_KEYS.find((k) => process.env[k]);