clio 3.0.1.8
See the version list below for details.
dotnet tool install --global clio --version 3.0.1.8
dotnet new tool-manifest
dotnet tool install --local clio --version 3.0.1.8
#tool dotnet:?package=clio&version=3.0.1.8
nuke :add-package clio --version 3.0.1.8
Introduction
Command Line Interface clio is the utility for integration Creatio platform with development and CI/CD tools.
Installation and features
You can download release binaries from latest release. Unpack the archive with clio.
Run with docker
Build
docker build -f ./install/Dockerfile -t clio .
Run
docker run -it --rm clio help
docker run -it --rm clio reg-web-app -help
Content table
- Introduction
- Installation and features
- Content table
- Arguments
- Register and unregister
- Packages
- NuGet Packages
- Application
- Environment settings
- Using for CI/CD systems
- Development
- Packages
- NuGet Packages
- Application
- Environment settings
- Using for CI/CD systems
Development
Arguments
<PACKAGE_NAME>
- package name<ENVIRONMENT_NAME>
- environment name<COMMAND_NAME>
- clio command name
Register and unregister
Windows
To register clio as the global tool, run the command:
dotnet tool install clio
you can register clio for all users:
dotnet tool install clio -g
To unregister clio as the global tool, run the command:
dotnet tool uninstall clio
or for all users:
dotnet tool uninstall clio -g
More information you can see in .NET Core Global Tools overview.
Context menu
clio register
clio unregister
MacOS
- Download .net core for mac
- Download and extract clio release
- Register clio folder in PATH system variables
Execute these command in terminal
cd ~/clio folder/
chmod 755 clio
Execute command in terminal for success check
clio help
Help and examples
For display available commands use:
clio help
For display command help use:
clio <COMMAND_NAME> --help
Packages
Creating new package
To create new package project, use the next command:
clio new-pkg <PACKAGE_NAME>
you can set reference on local core assembly with using Creatio file design mode with command in Pkg directory
clio new-pkg <PACKAGE_NAME> -r bin
Installing package
To install package from directory you can use the next command: for non compressed package in current folder
clio push-pkg <PACKAGE_NAME>
or for .gz packages you can use command:
clio push-pkg package.gz
or with full path
clio push-pkg C:\Packages\package.gz
for get installation log file specify report path parameter
clio push-pkg <PACKAGE_NAME> -r log.txt
Pull package from remote application
For download package to local file system from application use command:
clio pull-pkg <PACKAGE_NAME>
for pull package from non default application
clio pull-pkg <PACKAGE_NAME> -e <ENVIRONMENT_NAME>
Applies to Creatio 7.14.0 and up
Delete package
To delete package, use the next command:
clio delete-pkg-remote <PACKAGE_NAME>
for delete for non default application
clio delete-pkg-remote <PACKAGE_NAME> -e <ENVIRONMENT_NAME>
Compress package
For compress package into *.gz archive for directory which contain package folder
clio generate-pkg-zip <PACKAGE_NAME>
or you can specify full path for package and .gz file
clio generate-pkg-zip C:\Packages\package -d C:\Store\package.gz
Extract package
For package from *.gz archive
clio extract-pkg-zip <package>.gz -d c:\Pkg\<package>
Get package list
To get packages list in selected environment, use the next command:
clio get-pkg-list
for filter results, use -f option
clio get-pkg-list -f clio
Set package version
Set a specified package version into descriptor.json by specified package path.
clio set-pkg-version <PACKAGE PATH> -v <PACKAGE VERSION>
NuGet Packages
Pack NuGet package
To pack creatio package to a NuGet package (*.nupkg), use the next command:
pack-nuget-pkg <CREATIO_PACKAGE_PATH> [--Dependencies <PACKAGE_NAME_1>[:<PACKAGE_VERSION_1>][,<PACKAGE_NAME_2>[:<PACKAGE_VERSION_2>],...]>] [--NupkgDirectory <NUGET_PACKAGE_PATH>]
Default value of 'PACKAGE_VERSION' argument it's last package version.
Default value of 'NupkgDirectory' argument it's current directory.
Push NuGet package
To push NuGet package (*.nupkg) to a NuGet repository, use the next command:
push-nuget-pkg <NUGET_PACKAGE_PATH> --ApiKey <APIKEY_NUGET_REPOSITORY> --Source <URL_NUGET_REPOSITORY>
Restore NuGet package
To restore NuGet package (*.nupkg) to destination restoring package directory , use the next command:
restore-nuget-pkg <PACKAGE_NAME>[:<PACKAGE_VERSION>] [--DestinationDirectory <DESTINATION_DIRECTORY>] [--Source <URL_NUGET_REPOSITORY>]
Default value of 'PACKAGE_VERSION' argument it's last package version.
Default value of 'DestinationDirectory' argument it's current directory.
Default value of 'Source' argument: https://www.nuget.org/api/v2
Install NuGet package
To install NuGet package to a web application Creatio, use the next command:
clio install-nuget-pkg <PACKAGE_NAME>[:<PACKAGE_VERSION>] [--Source <URL_NUGET_REPOSITORY>]
you can install NuGet package of last version:
clio install-nuget-pkg <PACKAGE_NAME> [--Source <URL_NUGET_REPOSITORY>]
for install several NuGet packages:
clio install-nuget-pkg <PACKAGE_NAME_1>[:<PACKAGE_VERSION_1>][,<PACKAGE_NAME_2>[:<PACKAGE_VERSION_2>],...]> [--Source <URL_NUGET_REPOSITORY>]
or you can install several NuGet packages of last versions:
clio install-nuget-pkg <PACKAGE_NAME_1>[,<PACKAGE_NAME_2>,...]> [--Source <URL_NUGET_REPOSITORY>]
Default value of 'PACKAGE_VERSION' argument it's last package version.
Default value of 'Source' argument: https://www.nuget.org/api/v2
Check packages updates in NuGet
To check Creatio packages updates in a NuGet repository, use the next command:
clio check-nuget-update [--Source <URL_NUGET_REPOSITORY>]
Default value of 'Source' argument: https://www.nuget.org/api/v2
Application
Restart application
To restart Creatio application, use the next command for default environment:
clio restart-web-app
or for register application
clio restart-web-app <ENVIRONMENT_NAME>
Clear redis database
For default application
clio clear-redis-db
or non default application
clio clear-redis-db <ENVIRONMENT_NAME>
Environment settings
Environment is the set of configuration options. It consist of name, Creatio application URL, login and password.
Create/Update an environment
Register new application settings
clio reg-web-app <ENVIRONMENT_NAME> -u http://mysite.creatio.com -l administrator -p password
or update existing settings
clio reg-web-app <ENVIRONMENT_NAME> -u administrator -p password
Delete the existing environment
clio unreg-web-app <ENVIRONMENT_NAME>
Check environment
For validation existing environment setting you can use ping command
clio ping <ENVIRONMENT_NAME>
View application options
For view list of all applications
clio show-web-app-list
or for concrete application
clio show-web-app <ENVIRONMENT_NAME>
Open application
For open selected environment in default browser use (Windows only command)
clio open <ENVIRONMENT NAME>
Ping application
For check options fort selected environment use next command
clio ping <ENVIRONMENT NAME>
Using for CI/CD systems
In CI/CD systems, you can specify configuration options directly when calling command:
clio restart -u http://mysite.creatio.com -l administrator -p password
Development
Workspaces
For connect proffesional developer tools and Creatio no-code designers, you can organanize development flow in you local file system in workspace.
Create workspace in local directory, execute create-workspace command
C:\Demo> clio create-workspace
In directory .clio specify you packages
Create workspace in local directory with all editable packages from environment, execute create-workspace command with argument -e <Environment name>
C:\Demo> clio create-workspace -e demo
Restore packages in you file system via command from selected environmet
C:\Demo> clio restore-workspace -e demo
In workspace are supported new feature of Creatio platform - Package assembly. Clio create ready for development in Visual Studio or another IDE solution and you can open it via autogenerated command file
C:\Demo> OpenSolution.cmd
Push you modified code to the you environment via command and work with it from designer again
C:\Demo> clio push-workspace -e demo
IMPORTANT: Workspaces available from clio 3.0.1.2 and above and for full support developer flow you must install additional system package cliogate to you invironment.
C:\Demo> clio install-gate -e demo
Convert package
clio convert <PACKAGE_NAME>
Execute assembly
Execute code from assembly
clio execute-assembly-code -f myassembly.dll -t MyNamespace.CodeExecutor
References
Set references for project on src
clio ref-to src
Set references for project on application distributive binary files
clio ref-to bin
Execute custom SQL script
Execute custom SQL script on a web application
execute-sql-script "SELECT Id FROM SysSettings WHERE Code = 'CustomPackageId'"
Executes custom SQL script from specified file
execute-sql-script -f c:\Path to file\file.sql
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
This package has no dependencies.
Version | Downloads | Last Updated |
---|---|---|
8.0.1.39 | 44 | 7/8/2025 |
8.0.1.38 | 706 | 6/26/2025 |
8.0.1.37 | 469 | 6/19/2025 |
8.0.1.36 | 774 | 6/11/2025 |
8.0.1.35 | 289 | 6/11/2025 |
8.0.1.34 | 385 | 6/10/2025 |
8.0.1.32 | 724 | 5/29/2025 |
8.0.1.31 | 756 | 5/22/2025 |
8.0.1.30 | 650 | 5/15/2025 |
8.0.1.29 | 2,657 | 4/17/2025 |
8.0.1.28 | 1,361 | 4/10/2025 |
8.0.1.27 | 266 | 4/10/2025 |
8.0.1.26 | 1,980 | 4/3/2025 |
8.0.1.25 | 1,529 | 3/27/2025 |
8.0.1.24 | 180 | 3/27/2025 |
8.0.1.23 | 4,945 | 3/14/2025 |
8.0.1.22 | 1,749 | 3/7/2025 |
8.0.1.21 | 3,114 | 2/21/2025 |
8.0.1.20 | 1,393 | 2/14/2025 |
8.0.1.19 | 670 | 2/13/2025 |
8.0.1.18 | 1,416 | 2/7/2025 |
8.0.1.17 | 2,566 | 1/23/2025 |
8.0.1.16 | 1,574 | 1/17/2025 |
8.0.1.15 | 1,921 | 1/10/2025 |
8.0.1.14 | 1,385 | 1/3/2025 |
8.0.1.13 | 751 | 1/3/2025 |
8.0.1.12 | 1,129 | 12/27/2024 |
8.0.1.11 | 526 | 12/26/2024 |
8.0.1.10 | 2,464 | 12/13/2024 |
8.0.1.9 | 526 | 12/13/2024 |
8.0.1.8 | 784 | 12/12/2024 |
8.0.1.7 | 2,022 | 12/6/2024 |
8.0.1.6 | 2,279 | 11/22/2024 |
8.0.1.5 | 1,779 | 11/15/2024 |
8.0.1.4 | 640 | 11/14/2024 |
8.0.1.3 | 3,963 | 11/7/2024 |
8.0.1.2 | 2,232 | 10/31/2024 |
8.0.1.1 | 2,124 | 10/24/2024 |
6.1.0.39 | 7,415 | 9/26/2024 |
6.1.0.38 | 2,457 | 9/20/2024 |
6.1.0.37 | 1,102 | 9/13/2024 |
6.1.0.36 | 2,234 | 9/5/2024 |
6.1.0.35 | 2,979 | 8/22/2024 |
6.1.0.34 | 2,583 | 8/15/2024 |
6.1.0.33 | 2,293 | 8/9/2024 |
6.1.0.32 | 1,732 | 7/26/2024 |
6.1.0.31 | 1,833 | 7/19/2024 |
6.1.0.30 | 1,966 | 7/18/2024 |
6.1.0.29 | 2,360 | 7/12/2024 |
6.1.0.28 | 2,039 | 7/11/2024 |
6.1.0.27 | 1,800 | 7/11/2024 |
6.1.0.26 | 855 | 7/5/2024 |
6.1.0.25 | 1,989 | 7/4/2024 |
6.1.0.24 | 795 | 6/27/2024 |
6.1.0.23 | 347 | 6/26/2024 |
6.1.0.22 | 822 | 6/20/2024 |
6.1.0.21 | 876 | 6/13/2024 |
6.1.0.20 | 525 | 6/6/2024 |
6.1.0.19 | 950 | 5/31/2024 |
6.1.0.18 | 1,018 | 5/24/2024 |
6.1.0.16 | 867 | 5/17/2024 |
6.1.0.15 | 710 | 5/10/2024 |
6.1.0.14 | 987 | 4/30/2024 |
6.1.0.13 | 734 | 4/26/2024 |
6.1.0.12 | 967 | 4/19/2024 |
6.1.0.11 | 435 | 4/19/2024 |
6.1.0.10 | 365 | 4/18/2024 |
6.1.0.9 | 326 | 4/18/2024 |
6.1.0.8 | 1,200 | 4/11/2024 |
6.1.0.7 | 483 | 4/11/2024 |
6.1.0.6 | 492 | 4/11/2024 |
6.1.0.5 | 520 | 4/11/2024 |
6.1.0.4 | 980 | 4/3/2024 |
6.1.0.3 | 902 | 3/29/2024 |
6.1.0.2 | 389 | 3/29/2024 |
6.1.0.1 | 1,344 | 3/22/2024 |
6.0.2.51 | 1,127 | 3/15/2024 |
6.0.2.50 | 437 | 3/15/2024 |
6.0.2.49 | 1,184 | 3/8/2024 |
6.0.2.48 | 571 | 3/8/2024 |
6.0.2.47 | 1,038 | 3/1/2024 |
6.0.2.46 | 1,771 | 2/22/2024 |
6.0.2.45 | 858 | 2/15/2024 |
6.0.2.44 | 359 | 2/15/2024 |
6.0.2.43 | 894 | 2/9/2024 |
6.0.2.42 | 371 | 2/8/2024 |
6.0.2.41 | 640 | 2/1/2024 |
6.0.2.40 | 336 | 2/1/2024 |
6.0.2.39 | 639 | 1/25/2024 |
6.0.2.38 | 484 | 1/18/2024 |
6.0.2.37 | 463 | 1/18/2024 |
6.0.2.36 | 527 | 1/12/2024 |
6.0.2.35 | 283 | 1/11/2024 |
6.0.2.34 | 769 | 1/8/2024 |
6.0.2.33 | 527 | 1/5/2024 |
6.0.2.32 | 616 | 12/29/2023 |
6.0.2.31 | 395 | 12/29/2023 |
6.0.2.30 | 424 | 12/26/2023 |
6.0.2.29 | 353 | 12/26/2023 |
6.0.2.28 | 343 | 12/26/2023 |
6.0.2.27 | 589 | 12/21/2023 |
6.0.2.26 | 372 | 12/21/2023 |
6.0.2.25 | 951 | 12/14/2023 |
6.0.2.24 | 401 | 12/14/2023 |
6.0.2.23 | 366 | 12/14/2023 |
6.0.2.22 | 389 | 12/14/2023 |
6.0.2.21 | 391 | 12/14/2023 |
6.0.2.20 | 366 | 12/14/2023 |
6.0.2.19 | 986 | 12/7/2023 |
6.0.2.18 | 383 | 12/7/2023 |
6.0.2.17 | 720 | 12/4/2023 |
6.0.2.16 | 728 | 12/1/2023 |
6.0.2.15 | 395 | 11/30/2023 |
6.0.2.14 | 852 | 11/24/2023 |
6.0.2.13 | 331 | 11/24/2023 |
6.0.2.12 | 432 | 11/24/2023 |
6.0.2.11 | 411 | 11/23/2023 |
6.0.2.10 | 696 | 11/17/2023 |
6.0.2.9 | 543 | 11/9/2023 |
6.0.2.8 | 827 | 11/2/2023 |
6.0.2.7 | 438 | 11/2/2023 |
6.0.2.6 | 378 | 11/2/2023 |
6.0.2.5 | 477 | 11/2/2023 |
6.0.2.4 | 1,140 | 10/24/2023 |
6.0.2.3 | 719 | 10/19/2023 |
6.0.2.2 | 1,002 | 10/12/2023 |
6.0.2.1 | 829 | 10/5/2023 |
6.0.1.45 | 841 | 9/29/2023 |
6.0.1.44 | 589 | 9/28/2023 |
6.0.1.43 | 784 | 9/21/2023 |
6.0.1.42 | 454 | 9/21/2023 |
6.0.1.41 | 769 | 9/14/2023 |
6.0.1.40 | 1,452 | 8/24/2023 |
6.0.1.39 | 939 | 8/17/2023 |
6.0.1.38 | 340 | 8/17/2023 |
6.0.1.37 | 971 | 8/10/2023 |
6.0.1.36 | 988 | 7/27/2023 |
6.0.1.35 | 798 | 7/20/2023 |
6.0.1.34 | 427 | 7/20/2023 |
6.0.1.33 | 787 | 7/13/2023 |
6.0.1.32 | 768 | 7/6/2023 |
6.0.1.31 | 825 | 6/29/2023 |
6.0.1.30 | 743 | 6/22/2023 |
6.0.1.29 | 4,503 | 6/15/2023 |
6.0.1.28 | 321 | 6/15/2023 |
6.0.1.27 | 518 | 6/8/2023 |
6.0.1.26 | 408 | 6/8/2023 |
6.0.1.25 | 484 | 6/1/2023 |
6.0.1.24 | 575 | 5/25/2023 |
6.0.1.23 | 488 | 5/18/2023 |
6.0.1.22 | 434 | 5/11/2023 |
6.0.1.21 | 592 | 5/4/2023 |
6.0.1.20 | 473 | 5/4/2023 |
6.0.1.19 | 568 | 4/27/2023 |
6.0.1.18 | 580 | 4/20/2023 |
6.0.1.17 | 574 | 4/20/2023 |
6.0.1.16 | 562 | 4/13/2023 |
6.0.1.15 | 804 | 3/30/2023 |
6.0.1.14 | 543 | 3/30/2023 |
6.0.1.13 | 852 | 3/23/2023 |
6.0.1.12 | 838 | 3/16/2023 |
6.0.1.11 | 568 | 3/16/2023 |
6.0.1.10 | 843 | 3/9/2023 |
6.0.1.9 | 560 | 3/9/2023 |
6.0.1.8 | 441 | 3/3/2023 |
6.0.1.7 | 373 | 3/2/2023 |
6.0.1.6 | 460 | 2/23/2023 |
6.0.1.5 | 479 | 2/17/2023 |
6.0.1.4 | 412 | 2/16/2023 |
6.0.1.3 | 793 | 2/9/2023 |
6.0.1.2 | 673 | 1/26/2023 |
6.0.1.1 | 449 | 1/26/2023 |
3.0.1.41 | 1,971 | 12/22/2022 |
3.0.1.40 | 496 | 12/22/2022 |
3.0.1.39 | 488 | 12/9/2022 |
3.0.1.38 | 604 | 12/1/2022 |
3.0.1.37 | 844 | 11/7/2022 |
3.0.1.36 | 834 | 11/7/2022 |
3.0.1.35 | 675 | 10/27/2022 |
3.0.1.34 | 596 | 10/24/2022 |
3.0.1.33 | 645 | 10/20/2022 |
3.0.1.32 | 600 | 10/20/2022 |
3.0.1.31 | 716 | 9/29/2022 |
3.0.1.30 | 585 | 9/28/2022 |
3.0.1.29 | 1,887 | 9/19/2022 |
3.0.1.28 | 585 | 9/9/2022 |
3.0.1.27 | 641 | 9/1/2022 |
3.0.1.26 | 664 | 8/25/2022 |
3.0.1.25 | 518 | 8/25/2022 |
3.0.1.24 | 602 | 8/19/2022 |
3.0.1.23 | 561 | 8/19/2022 |
3.0.1.22 | 547 | 8/19/2022 |
3.0.1.21 | 1,715 | 8/11/2022 |
3.0.1.20 | 543 | 8/11/2022 |
3.0.1.19 | 515 | 8/11/2022 |
3.0.1.18 | 697 | 8/1/2022 |
3.0.1.17 | 710 | 7/25/2022 |
3.0.1.16 | 599 | 7/21/2022 |
3.0.1.15 | 549 | 7/21/2022 |
3.0.1.14 | 764 | 7/14/2022 |
3.0.1.13 | 751 | 7/7/2022 |
3.0.1.12 | 689 | 6/30/2022 |
3.0.1.11 | 685 | 6/23/2022 |
3.0.1.10 | 691 | 6/14/2022 |
3.0.1.9 | 925 | 5/30/2022 |
3.0.1.8 | 698 | 5/23/2022 |
3.0.1.7 | 591 | 5/19/2022 |
3.0.1.6 | 743 | 5/11/2022 |
3.0.1.5 | 690 | 5/3/2022 |
3.0.1.2 | 604 | 5/3/2022 |
3.0.1.1 | 638 | 5/2/2022 |
2.0.0.15 | 9,811 | 9/21/2021 |
2.0.0.14 | 2,433 | 2/22/2021 |
2.0.0.13 | 1,245 | 11/20/2020 |
2.0.0.12 | 1,607 | 6/16/2020 |
2.0.0.11 | 772 | 6/11/2020 |
2.0.0.9 | 1,246 | 4/8/2020 |
2.0.0.8 | 900 | 3/9/2020 |
2.0.0.7 | 726 | 2/20/2020 |
2.0.0.6 | 784 | 2/13/2020 |
2.0.0.5 | 839 | 2/6/2020 |
2.0.0.4 | 713 | 1/30/2020 |
2.0.0.3 | 739 | 1/24/2020 |
2.0.0.2 | 720 | 1/23/2020 |