@clue-ai/cli 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/setup-prepare.mjs +17 -0
package/package.json
CHANGED
package/src/setup-prepare.mjs
CHANGED
|
@@ -479,6 +479,23 @@ export const runSetupPrepare = async ({
|
|
|
479
479
|
"CLUE_INGEST_ENDPOINT",
|
|
480
480
|
"CLUE_API_BASE_URL",
|
|
481
481
|
],
|
|
482
|
+
required_env_scopes: {
|
|
483
|
+
service_runtime: [
|
|
484
|
+
"CLUE_SERVICE_KEY",
|
|
485
|
+
"CLUE_PROJECT_KEY",
|
|
486
|
+
"CLUE_ENVIRONMENT",
|
|
487
|
+
"CLUE_INGEST_ENDPOINT",
|
|
488
|
+
"CLUE_API_KEY",
|
|
489
|
+
],
|
|
490
|
+
github_secrets: ["CLUE_API_KEY", "CLUE_AI_PROVIDER_API_KEY"],
|
|
491
|
+
github_variables: [
|
|
492
|
+
"CLUE_PROJECT_KEY",
|
|
493
|
+
"CLUE_ENVIRONMENT",
|
|
494
|
+
"CLUE_API_BASE_URL",
|
|
495
|
+
"CLUE_AI_PROVIDER",
|
|
496
|
+
"CLUE_AI_MODEL",
|
|
497
|
+
],
|
|
498
|
+
},
|
|
482
499
|
};
|
|
483
500
|
const environmentInstructions = buildEnvironmentInstructions({
|
|
484
501
|
manifest,
|