diff --git a/wiki/docs/extension_quick_start.md b/wiki/docs/extension_quick_start.md index ba79c889..d7c509d5 100644 --- a/wiki/docs/extension_quick_start.md +++ b/wiki/docs/extension_quick_start.md @@ -10,7 +10,6 @@ First you need to [install](install.md) the CLI. First we need to login into our Shopware account. For this execute the command `shopware-cli account login` and login with your credentials. This credentials will be saved locally. With `shopware-cli account logout` can you logout again. For the CI you can set enviroment variables `SHOPWARE_CLI_ACCOUNT_EMAIL` and `SHOPWARE_CLI_ACCOUNT_PASSWORD` skip the login step. - ## Optional: Change the active Shopware Account company Your Shopware account can be in multiple companies. Use the command `shopware-cli account company list` to show all companys you have access. @@ -21,10 +20,14 @@ With `shopware-cli account company use ` can you switch the current company To upload the zip later in the Store, you need to create the extension in the Account. If you haven't done this you can do this with ``` -shopware-cli extension create platform +shopware-cli account producer extension create platform ``` -possible values are: `classic` (Shopware 5) `platform` (Shopware 6 Plugin system) `themes` (Shopware 6 App containg theme) `apps` (Shopware 6 App) +possible values for the last parameter are: +* `classic` (Shopware 5) +* `platform` (Shopware 6 Plugin system) +* `themes` (Shopware 6 App containg theme) +* `apps` (Shopware 6 App) ## Getting the Store Information into the Git repository