Fill project settings
Fills in the settings from the passed collection
Function FillProjectSettings(Val Project, Val Settings) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Project | --proj | String | ✔ | Project filepath |
Settings | --set | Map Of KeyAndValue | ✔ | Collection key and value to fill in the settings |
Returns: Structure Of KeyAndValue - Project settings list
tip
If values are modified in a running project, the changes may take up to 60 seconds to be applied
- Bash
- CMD/Bat
# JSON данные также могут быть переданы как путь к файлу .json
melezh FillProjectSettings \
--proj "/proj.melezh" \
--set "{'logs_req_headers':false,'logs_req_body':false}"
:: JSON данные также могут быть переданы как путь к файлу .json
melezh FillProjectSettings ^
--proj "/proj.melezh" ^
--set "{'logs_req_headers':false,'logs_req_body':false}"
Result
{
"result": true
}