From e9e4f18331a7e66ba807a53382139ee84d951706 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Tue, 4 Jun 2024 13:37:08 +0300 Subject: [PATCH] Update index.md --- docs/en/cli/index.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/docs/en/cli/index.md b/docs/en/cli/index.md index 17ca5b0ac6..d7e4e20429 100644 --- a/docs/en/cli/index.md +++ b/docs/en/cli/index.md @@ -57,11 +57,12 @@ Here, is the list of all available commands before explaining their details: * **`login`**: Authenticates on your computer with your [abp.io](https://abp.io/) username and password. * **`login-info`**: Shows the current user's login information. * **`logout`**: Logouts from your computer if you've authenticated before. +* **`upgrade`**: Upgrades solution with Pro modules * **`bundle`**: Generates script and style references for ABP Blazor and MAUI Blazor project. * **`install-libs`**: Install NPM Packages for MVC / Razor Pages and Blazor Server UI types. * **`clear-download-cache`**: Clears the templates download cache. * **`trust-version`**: Trusts the user's version and does not check if the version exists or not. If the template with the given version is found in the cache, it will be used, otherwise throws an exception. - + ### help Shows basic usages of the ABP CLI. @@ -616,7 +617,7 @@ Deletes a remote module source from the list of sources that you can use to inst ````bash abp delete-module-source [options] -```` +```` Example: @@ -860,6 +861,25 @@ Logs you out by removing the session token from your computer. ```bash abp logout ``` +### upgrade + +Upgrades the solution with Pro modules. Especially designed for users who already started their development before having a license. Therefore this command requires license. For more info, see [the related document](../studio/upgrade-to-pro.md) . + +````bash +abpc upgrade [options] +```` + +Example: + +````bash +abpc upgrade -t app + +abpc upgrade -t app-nolayers +```` + +#### options + +* `--template` or `-t`: The template type of the solution. Only `app` and `app-nolayers` are valid currently. ### bundle