Skip to content

Instantly share code, notes, and snippets.

@iuriimattos
Created November 30, 2020 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iuriimattos/66afc3c499b14fd7468ceb9963346178 to your computer and use it in GitHub Desktop.
Save iuriimattos/66afc3c499b14fd7468ceb9963346178 to your computer and use it in GitHub Desktop.
MAGENTO 2.3.6 with VAGRANT jimmybox 3.0

Hi Iuri Matos friend's we setup Magento 2.3.6 using Windows 10... :) Magento 2.4 need elastic search but it's hard to configure... :/

  1. Install Vagrant
  2. Install VirtualBox and run
git clone https://github.com/JarJarBernie/jimmybox.git magento
cd magento
  1. Extract magento 2.3.6 into public folder
vagrant up
vagrant ssh
mysql -u root -p
root
create database magento;
exit
sudo update-alternatives --set php /usr/bin/php7.3
sudo apt-get update
sudo apt-get install php7.3-intl
y
cd /var/www/
composer install
sudo service apache2 restart
  1. Edit your hosts file (C:\Windows\System32\drivers\etc\hosts) added in end of file
192.168.33.11  jimmy73.com
  1. Open http://jimmy73.com/magento
  2. Agree and Setup Magento
  3. Start Readiness Check
  4. Database Server Password
root
  1. Next, next, (generate you admin account) and next.

Enjoy :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment