--- sidebar_position: 5 description: Set project setting and other functions to work with Melezh in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Set project setting Sets the value of the selected project setting `Function SetProjectSetting(Val Project, Val Setting, Val Value) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Project | --proj | String | ✔ | Project filepath | | Setting | --key | String | ✔ | Project setting key | | Value | --value | String | ✔ | Value of project setting | Returns: Structure Of KeyAndValue - Setting result
:::tip If a value is modified in a running project, the change may take up to 60 seconds to be applied :::
```bash melezh SetProjectSetting \ --proj "/proj.melezh" \ --key "***" \ --value "yo" ``` ```batch melezh SetProjectSetting ^ --proj "/proj.melezh" ^ --key "***" ^ --value "yo" ``` ```json title="Result" { "result": true } ```