Last active
October 29, 2017 22:53
-
-
Save Sorbog/88c6e921f231da4e82147312001306a8 to your computer and use it in GitHub Desktop.
Magento 2 console snippets
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
php bin/magento setup:install --base-url=http://magento2.dev/ \ | |
--db-host=127.0.0.1 --db-name=magento2 --db-user=root \ | |
--admin-firstname=Magento --admin-lastname=User [email protected] \ | |
--admin-user=admin --admin-password=abcABC123 --language=en_US \ | |
--currency=USD --timezone=America/Chicago --cleanup-database \ | |
--session-save=files --backend-frontname=admin --use-rewrites=1; | |
php bin/magento setup:config:set --session-save=files --backend-frontname=admin \ | |
--db-host=127.0.0.1 --db-name=magento2 --db-user=root; | |
php bin/magento admin:user:create --admin-user=admin --admin-password=abcABC123 \ | |
--admin-firstname=Magento --admin-lastname=User [email protected]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment