This is vagrant environment is suited for D8 development.
run "make core", this will set you up with the lasted version D8 core and put it in the "web" directory.
Run 'vagrant up'. Vagrant will need sudo permissions for your local user in order to set up NFS shares properly.
Go to 192.168.50.2, you should have a working D8 code base.
- Access via browser to the web root is defined in the Vagrant file: 192.168.50.2, you can add this entry to
/etc/hosts
Mac OS X GUI hint: Hosts.prefpane
- host: 192.168.50.2
- user: root
- pass: password
- host: 192.168.50.2
- user: vagrant
- pass: vagrant
Download the private vagrant ssh key here, then create an alias in ~/.drush/aliases.drushrc.php:
<?php
$aliases['dev'] = array(
'root' => '/var/www',
'db-url' => 'mysql://root:password@localhost/db',
'remote-host' => '192.168.50.2',
'remote-user' => 'vagrant',
'ssh-options' => '-i /path-to-your-key/vagrant',
);
?>