🔬
Documentation
  • 👋Development Documentation
  • Overview
    • 💡What we do
    • ✨Our Features
  • Product Guides
    • 📪Making a post
    • 📎Understanding Projects
  • Fundamentals
    • 🛠️Getting set up
      • 📝Setting permissions
      • 🧑Inviting Members
  • Use Cases
    • 🎨For Designers
    • Page 1
    • 🖥️For Developers
      • Example of .gitignore
      • Cusotm Theme File Sync script for specified directories with auto git commit
    • ◀️List of Plugins
    • 👨‍💻Tips and Tricks
      • CLI schedule task and consume service
      • ♻️Automatic database backup (Updated)
      • 🛠️Execute a command from host to docker using terminal
      • 📋Shopware 6 commands
      • 😀Activate all plugins via CLI
      • ☠️Kill a process on a port [Linux]
      • 📄How do you import the database using CLI
      • 👨‍🔧Change PHP Configuration [Terminal]
      • 👁️Access to PHP Path Aixspro
      • 🌐Manage Apache services [Linux]
    • 📄SQL Tips & Tricks (shopware 6)
Powered by GitBook
On this page
  1. Use Cases
  2. Tips and Tricks

Shopware 6 commands

The list of the most useful Shopware 6 commands

So now that we know, how to work with Console, here comes the list of the commands, commonly used during Shopware 6 plugin development:

Clear the cache
cache:clear

List all plugins

plugin:list

Create a plugin skeleton

plugin:create

Install plugin(s)

plugin:install

Uninstall plugin(s)

plugin:uninstall

Activate plugin(s)

plugin:activate

Deactivate plugin(s)

plugin:deactivate

Update plugin(s)

plugin:update

Create a theme skeleton

theme:create

Compile the theme

theme:compile

Create an admin user

user:create

List available services

debug:container

If you want to see the parameters, that these commands accept, you can safely run them with -h, without really doing anything

php bin/console plugin:create -h

Now follows some additional information on the fore mentioned commands, that you might find useful.

PreviousExecute a command from host to docker using terminalNextActivate all plugins via CLI

Last updated 1 year ago

👨‍💻
📋