Team,

I've been trying for a weekend to get something like this up and running and this is the closest to what I need of anything out there. One thing though - I was just curious as to how the modules are installed. Did you just create the drupal install and point to it in Vagrant and just share out the public directory, or did you instruct Vagrant to download and install the modules using drush_make? I may just not be looking in the right place...

One other thing - in the instructions on the main project page you fail to mention that you need to run the drupal installer (http://drupal.vbox.local/install.php) in order to start your site. I would put that as your last line, as there's another user that ran into the same issue I did and created an issue for it.

Thanks for your hard work in getting this base install done! It's going to save me a bunch of time!

Scromie

Comments

christianchristensen’s picture

On the default install drush make installs the example.make file to make a "demo" site. This makefile can be found: http://drupalcode.org/project/vagrant.git/blob/refs/heads/7.x-1.x:/cookb...

The actions that are actually running are: http://drupalcode.org/project/vagrant.git/blob/refs/heads/7.x-1.x:/cookb...

It is notable that there are really better patterns to do this as Chef affords some very nice deployment utilities that could be used in place here: http://wiki.opscode.com/display/chef/Deploy+Resource and an example: https://github.com/glennpratt/drupal-quick-start ...