Browse Source

Merge pull request #20568 from abpframework/update-upgrade-document

Update documentation related with upgrade command
pull/20591/head
Berkan Sasmaz 1 year ago
committed by GitHub
parent
commit
e36aac74fe
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      docs/en/cli/index.md
  2. 19
      docs/en/guides/migrating-from-open-source.md

7
docs/en/cli/index.md

@ -794,12 +794,19 @@ Examples:
````bash
abp upgrade -t app
abp upgrade -t app --language-management --gdpr --audit-logging-ui --text-template-management --openiddict-pro
abp upgrade -t app-nolayers --audit-logging-ui
abp upgrade -t app-nolayers -p D:\MyProjects\MyProject
````
#### Options
* `--path` or `-p`: Specifies the module path. The module should be in that directory. If not specified, the default is the current directory.
* `--gdpr`: Installs GDPR module too.
* `--language-management`: Installs Language Management module too.
* `--audit-logging-ui`: Installs Audit Logging Pro (UI) module too.
* `--text-template-management`: Installs Text Template Management module too.
* `--openiddict-pro`: Installs OpenIddict Pro (UI) module too.
### translate

19
docs/en/guides/migrating-from-open-source.md

@ -9,12 +9,14 @@ ABP Studio provides a way for users, who already started the development before
* Alternatively, you can use the following ABP Studio CLI command to achieve the same functionality:
```bash
abp upgrade [-t <template-name>]
abp upgrade [-t <template-name>] [options]
Examples:
abp upgrade -t app
abp upgrade -t app-nolayers
abp upgrade -t app --language-management --gdpr --audit-logging-ui --text-template-management --openiddict-pro
abp upgrade -t app-nolayers --audit-logging-ui
abp upgrade -t app-nolayers -p D:\MyProjects\MyProject
```
## Changes in the solution
@ -31,15 +33,14 @@ This command will remove the following modules from your solution:
And install the following modules to your solution:
- Volo.Abp.Account.Pro
- Volo.Abp.AuditLogging.Pro
- Volo.Abp.Identity.Pro
- Volo.Abp.OpenIddict.Pro
- Volo.Saas
- Volo.Abp.LanguageManagement
- Volo.Abp.TextTemplateManagement
- Volo.FileManagement
- Volo.Abp.Gdpr
- Volo.Abp.LeptonXTheme
- Volo.Saas
- Volo.Abp.OpenIddict.Pro (*Optional*)
- Volo.Abp.AuditLogging.Pro (*Optional*)
- Volo.Abp.LanguageManagement (*Optional*)
- Volo.Abp.TextTemplateManagement (*Optional*)
- Volo.Abp.Gdpr (*Optional*)
### Other changes

Loading…
Cancel
Save