Skip to content

Commit

Permalink
fix WikiTests
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-nikonov committed Jan 3, 2025
1 parent 5f51ecf commit aaa17e9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
3 changes: 3 additions & 0 deletions clio.tests/Command/ReadmeChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ private void PopulateListToCheck(Type T){
if (commandName[0] == commandVerbName) {
string[] possibleSectionNames = commandName[1].Split(',');
foreach (string possibleSectionName in possibleSectionNames) {
if (!_namesToCheck.Contains(possibleSectionName)) {
_namesToCheck.Add(possibleSectionName);
}
string mayBeSectionNae = _convertCommandNameToSection(possibleSectionName);
if (!_namesToCheck.Contains(mayBeSectionNae)) {
_namesToCheck.Add(mayBeSectionNae);
Expand Down
15 changes: 12 additions & 3 deletions clio/Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Clio Command Reference
- [Workspaces](#workspaces)
- [Development](#development)
- [Using for CI/CD systems](#using-for-cicd-systems)
- [Web farm deployments](#web-farm-deployments)
- [GitOps](#gitops)
- [Installation of Creatio](#installation-of-creatio-using-clio)

Expand Down Expand Up @@ -110,8 +111,8 @@ clio ver --runtime
- [Restore configuration](#restore-configuration)
- [Get package list](#get-pkg-list)
- [Set package version](#set-pkg-version)
- [Set application version](#set-app-version)
- [Set application icon](#set-app-icon)
- [Set application version](#set-application-version)
- [Set application icon](#set-application-icon)

## new-pkg

Expand Down Expand Up @@ -284,7 +285,7 @@ Set a specified package version into descriptor.json by specified package path.
clio set-pkg-version <PACKAGE PATH> -v <PACKAGE VERSION>
```

## set-app-version
## set-application-version

Set a specified composable application version into application-descriptor.json by specified workspace or package path.

Expand Down Expand Up @@ -1006,6 +1007,14 @@ In CI/CD systems, you can specify configuration options when calling commands:
clio restart -u https://mysite.creatio.com -l administrator -p password
```
# Web farm deployments
To ensure proper functioning of Creatio in Web Farm mode, it is crucial that all nodes are identical. Clio provides the following command to verify this:
```bash
clio check-web-farm-node "\\Node1\Creatio,\\Node2\Creatio" -d
```
# GitOps
- [Apply manifest to Creatio instance](#apply-manifest)
Expand Down
3 changes: 2 additions & 1 deletion clio/Wiki/WikiAnchors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ show-diff:show-difference-in-settings-for-two-creatio-intances
mock-dat:mock-data-for-unit-tests
deploy-creatio:run-creatio-installation
set-app-icon:set-application-icon
last-compilation-log:get-last-compilation-log
last-compilation-log:get-last-compilation-log
add-schema:add-schema

0 comments on commit aaa17e9

Please sign in to comment.