addEnvAndServices
client.application.addEnvAndServices(): Promise<void>
Triggers the addition of environment variables and services.
Initiates the process of detecting and adding environment variables and service configurations to the current workspace.
Parameters
No parameters.
Returns
Promise<void> — A promise that resolves when the operation is complete
Example
import { CodeBoltClient } from '@codebolt/clientsdk';
const client = new CodeBoltClient();
const result = await client.application.addEnvAndServices();
console.log(result);