Skip to main content

getConfigs

client.projects.getConfigs(): Promise<ProjectConfig>

Retrieves the configuration settings for the current project.

Returns project-level settings including build commands, environment variables, agent preferences, and other configurable options.

Parameters

No parameters.

Returns

Promise<ProjectConfig> — A promise that resolves to the project configuration

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.projects.getConfigs();
console.log(result);