2019-05-06 16:17:16 +02:00
# Quick start
2019-05-16 18:12:56 +02:00
Strapi allows you to create local plugins that will work exactly the same as external ones. All your local plugins will be located in the `./plugins` folder of your application.
2019-05-06 16:17:16 +02:00
## Development Environment Setup
Create a development project
1. Create a new project `cd .. && strapi new myDevelopmentProject` .
2019-05-16 11:14:32 +02:00
2. `cd myDevelopmentProject && strapi develop` To start the strapi project
2019-05-06 16:17:16 +02:00
## Plugin development Setup
In a new terminal window:
1. Generate a new plugin: `cd /path/to/myDevelopmentProject && strapi generate:plugin my-plugin`
::: note
2019-05-16 11:14:32 +02:00
The admin panel integration is currently not available. You can still add backend features.
2019-05-06 16:17:16 +02:00
:::