Skip to content

Instantly share code, notes, and snippets.

@wsagen
Created May 18, 2016 08:07
Show Gist options
  • Save wsagen/a36f1d02f7df9b17369849997993d1aa to your computer and use it in GitHub Desktop.
Save wsagen/a36f1d02f7df9b17369849997993d1aa to your computer and use it in GitHub Desktop.
Install Latest release Magento via Composer
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 [email protected] \
--admin-user=admin --admin-password=admin123 --backend-frontname=admin --language=en_US \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment