Magento 2 Deploy Command Line
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!
- How to create a simple Hello World module for Magento 2
- Magento 2 Block Template Ultimate Guides
- How to Create Module in Magento 2
- How to Create Controller in Magento 2
- How to create CRUD Models in Magento 2
- How to Create Magento 2 Block, Layout and Templates
- Configuration - System.xml
- How To Create Admin Menu In Magento 2
- Admin ACL
- Admin Grid