...
- Install Vagrant
- Install VirtualBox 4
- Check out DrupalVM
git clone git@github.com:geerlingguy/drupal-vm.git ~/.drupalvm
cd ~/.drupalvm
- Update the configuration
- Copy example.drupal.make.yml to drupal.make.yml
- Copy example.config.yml to config.yml
- Change configuration in config.yml
- Create your siteCheck out the site source code
mkdir -p ~/Sites
git clone git@github.com:kalamuna/greenbiz.com.git ~/Sites/mysite
- Update ~/.drupalvm/config.yml to point local_path to ~/Sites/mysite
- Run the site
cd ~/.drupalvm
vagrant up
- Import the Database from Pantheon
- Visit the Pantheon Dashboard
- Download a database backup from Pantheon
- Import it
gunzip -c mysql-backup.sql.gz | drush @drupalvm.drupalvm.dev sql-cli
- TODO: Update this to sql-sync
- Load the site at http://drupalvm.dev/ if you didn't configure the port in config.yml.
...