mirror of
https://github.com/strapi/strapi.git
synced 2025-08-08 00:37:38 +00:00

git-subtree-dir: packages/strapi-plugin-settings-manager git-subtree-mainline: 80aa83d8460c95366547e143c74bf79ea6ae69f8 git-subtree-split: cd241c14c6a6239bca279e7accd709ba58e87cc8
38 lines
997 B
Markdown
38 lines
997 B
Markdown
# Strapi Settings Manager
|
|
|
|
## Description
|
|
|
|
Strapi plugin built to let you easily configure your Strapi applications.
|
|
|
|
## Installation
|
|
|
|
Create a new Strapi application: `strapi new myApp`.
|
|
|
|
Go in your new Strapi application: `cd myApp`.
|
|
|
|
Go in the plugins repository: `cd plugins`.
|
|
|
|
Clone this repository: `git clone https://github.com/strapi/strapi-settings-manager settings-manager`.
|
|
|
|
Go in the Settings Manager repository: `cd settings-manager`.
|
|
|
|
Setup the plugin: `npm run setup`. This will install the required node modules and build the React plugin.
|
|
|
|
Go at the root of your application: `cd ../..`.
|
|
|
|
Start your application: `strapi start`.
|
|
|
|
Summary:
|
|
```
|
|
strapi new myApp \
|
|
&& cd myApp \
|
|
&& cd plugins \
|
|
&& git clone https://github.com/strapi/strapi-settings-manager settings-manager \
|
|
&& cd settings-manager \
|
|
&& npm run setup \
|
|
&& cd ../.. \
|
|
&& strapi start
|
|
```
|
|
|
|
Note: in the near future, the way to install the plugins will be easier (eg. `strapi install settings-manager`).
|