This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <installation directory name> | |
| create DB | |
| edit index.php and setup/index.php to add - ini_set('xdebug.max_nesting_level', 200); | |
| bin/magento setup:install --base-url=http://127.0.0.1/mage2/m206/ \ | |
| --db-host=localhost --db-name=m206 --db-user=m206 --db-password=computer100 \ | |
| --admin-firstname=Magento --admin-lastname=User --admin-email=user@example.com \ | |
| --admin-user=admin --admin-password=admin123 --backend-frontname=admin --language=en_US \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git branch --merged | egrep -v "(^\*|master|develop|main|PRODUCTION)" | xargs git branch -d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //exclude master and develop | |
| git branch -r --merged | grep -v master | grep -v main | grep -v develop | sed 's/origin\///' | xargs -n 1 git push --delete origin | |
| //M2 | |
| git branch -r --merged | grep -v master | grep -v main | grep -v develop | grep -v PRODUCTION | grep -v staging | sed 's/origin\///' | sed 's/composer\///' | xargs -n 1 git push --delete origin | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://magento.stackexchange.com/questions/102113/requirejs-shim-option-not-working |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://stackoverflow.com/questions/37430036/override-html-file-in-custom-module-magento2/37464758#37464758 |
OlderNewer