2017-10-10 11:15:24 +02:00
|
|
|
# Quick start
|
|
|
|
|
2017-10-11 10:51:28 +02:00
|
|
|
You can install and uninstall any plugin you want.
|
2017-10-10 11:15:24 +02:00
|
|
|
|
|
|
|
## Plugin installation
|
|
|
|
|
2017-10-12 13:00:07 +02:00
|
|
|
Look at the [CLI documentation](../cli/CLI.html#strapi-install) to install plugin.
|
2017-10-10 11:15:24 +02:00
|
|
|
|
|
|
|
### Basic usage
|
|
|
|
|
|
|
|
Considering you want to install a plugin named `content-manager` you can run the following command:
|
2017-10-11 10:51:28 +02:00
|
|
|
```bash
|
|
|
|
strapi install content-manager
|
|
|
|
```
|
2017-10-10 11:15:24 +02:00
|
|
|
|
2017-10-12 13:00:07 +02:00
|
|
|
> Note: This implies that this plugin is published on the npm registry as `strapi-plugin-content-manager`.
|
2017-10-10 11:15:24 +02:00
|
|
|
|
|
|
|
***
|
|
|
|
|
|
|
|
## Plugin uninstallation
|
|
|
|
|
2017-10-12 13:00:07 +02:00
|
|
|
Look at the [CLI documentation](../cli/CLI.html#strapi-uninstall) to install plugin.
|
2017-10-10 11:15:24 +02:00
|
|
|
|
|
|
|
### Basic usage
|
|
|
|
|
2017-10-12 13:00:07 +02:00
|
|
|
This command will simply removes the plugin folder.
|
|
|
|
```bash
|
|
|
|
strapi uninstall content-manager
|
|
|
|
```
|
2017-10-10 11:15:24 +02:00
|
|
|
|
2017-10-11 10:51:28 +02:00
|
|
|
Please refer to the [CLI documentation](../cli/CLI.md) for more information.
|