mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
814 B
Plaintext
42 lines
814 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# magento
|
|
|
|
> Manage the Magento PHP framework.
|
|
> More information: <https://experienceleague.adobe.com/en/docs/commerce-operations/tools/cli-reference/commerce-on-premises>.
|
|
|
|
- Enable one or more modules:
|
|
|
|
`magento module:enable {{module1 module2 ...}}`
|
|
|
|
- Disable one or more modules:
|
|
|
|
`magento module:disable {{module1 module2 ...}}`
|
|
|
|
- Update the database after enabling modules:
|
|
|
|
`magento setup:upgrade`
|
|
|
|
- Update code and dependency injection configuration:
|
|
|
|
`magento setup:di:compile`
|
|
|
|
- Deploy static assets:
|
|
|
|
`magento setup:static-content:deploy`
|
|
|
|
- Enable maintenance mode:
|
|
|
|
`magento maintenance:enable`
|
|
|
|
- Disable maintenance mode:
|
|
|
|
`magento maintenance:disable`
|
|
|
|
- List all available commands:
|
|
|
|
`magento list`
|