Magento 2 Deploy Command Line
Vinh Jacker | 12-18-2024
In this tutorial, we will talk about how to Deploy Command Line in Command Line Series to perform Magento 2 functions. As you know, from Magento 2, they add many commands in bin/magento
. Command lines are too faminliar with Magento developers, but in case you are new to this fields. This article will take you closer to the Magento 2 command lines and how to deploy them in Magento 2 in a easy-to-understand way.
Let’s get started!
Deploy command line
Commands syntax:
php bin/magento setup:static-content:deploy <lang> ... <lang> [--dry-run]
How to run deploy static content
php bin/magento setup:static-content:deploy
It will display as the following:
$ php bin/magento setup:static-content:deploy
Requested languages: en_US
=== frontend -> Magento/blank -> en_US ===
........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
By default it will run deploy static content of default language: en_EN
If you want to deploy static content of other language such as: pt_BR
Run
php bin/magento setup:static-content:deploy pt_BR
Then get result:
Requested languages: pt_BR
=== frontend -> Magento/luma -> pt_BR ===
... progress indicator ...
Successful: 1613 files; errors: 0
=== frontend -> Magento/blank -> pt_BR ===
... progress indicator ...
Successful: 1620 files; errors: 0
=== adminhtml -> Magento/backend -> pt_BR ===
... progress indicator ...
Successful: 1626 files; errors: 0
=== Minify templates ===
... progress indicator ...
Successful: 858 files modified
---
Related Topics
- Magento 2 Setup Upgrade Command Line
- Run Compile Command Line in Magento 2
- Magento 2 Add command line
Wrap up
That’s how you can run command lines in Magento 2 easily without errors. You can also create custom command line in Magento 2, which is demonstrated in this article. Check it out if you are interested in.
Thanks for reading!