Created
July 30, 2015 08:36
-
-
Save birchestx/5566cb150c0ac88ba695 to your computer and use it in GitHub Desktop.
Install Magento 2 Merchant Beta with database - quick route via command line
This file contains 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
cd htdocs | |
composer create-project magento/community-edition magento2 1.0.0-beta --prefer-dist | |
create db (see details below) | |
Edit setup/index.php && index.php and add this - ini_set('xdebug.max_nesting_level', 200); | |
bin/magento setup:install --base-url=http://127.0.0.1/magento2/ \ | |
--db-host=localhost --db-name=magento --db-user=magento --db-password=magento \ | |
--admin-firstname=Magento --admin-lastname=User [email protected] \ | |
--admin-user=admin --admin-password=admin123 --language=en_US \ | |
--currency=USD --timezone=America/Chicago --use-sample-data --use-rewrites=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment