Browse Source

Update Index.md

pull/10187/head
Ahmet Çotur 5 years ago
parent
commit
a77ef93960
  1. 4
      docs/en/Modules/Cms-Kit/Index.md

4
docs/en/Modules/Cms-Kit/Index.md

@ -25,10 +25,10 @@ All features are individually usable. If you disable a feature, it completely di
[ABP CLI](../../CLI.md) allows installing a module to a solution using the `add-module` command. You can install the CMS Kit module in a command-line terminal with the following command:
```bash
abp add-module Volo.CmsKit --skip-db-migrations
abp add-module Volo.CmsKit
```
> By default, Cms-Kit is disabled by `GlobalFeature`. Because of that the initial migration will be empty. So you can skip the migraiton when installing if you are using Entity Framework Core. After enabling Cms-Kit global feture, please add new migration.
> By default, Cms-Kit is disabled by `GlobalFeature`. Because of that the initial migration will be empty. So you can skip the migration by adding `--skip-db-migrations` to command when installing if you are using Entity Framework Core. After enabling Cms-Kit global feture, please add new migration.
After the installation process, open the `GlobalFeatureConfigurator` class in the `Domain.Shared` project of your solution and place the following code into the `Configure` method to enable all the features in the CMS Kit module.

Loading…
Cancel
Save