Shopware 6 Theme entwickeln – Livestream #1

Shopware 6 Theme entwickeln – Livestream #1


[expand title=“mehr lesen…“]

Console
/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console

shopware plugin service
/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console plugin:list

shopware plugin deinstallieren
/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console plugin:uninstall ...

shopware cache leeren
/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console cache:clear

theme skelett erstellen

/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console theme:create name (zB. EightTheme)
/Applications/MAMP/bin/php/php7.3.1/bin/php bin/console theme:create --help
# move into your theme folder
$ cd custom/plugins/MyTheme

# structure of theme
├── composer.json
└── src
    ├── MyTheme.php
    └── Resources
        ├── app
        │   └── storefront
        │       ├── dist
        │       │   └── storefront
        │       │       └── js
        │       │           └── my-theme.js
        │       └── src
        │           ├── assets
        │           ├── main.js
        │           └── scss
        │               ├── base.scss
        │               └── overrides.scss
        └── theme.json


[/expand]