Created
March 30, 2012 20:54
Revisions
-
clintberry renamed this gist
Mar 30, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
clintberry created this gist
Mar 30, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ config.vm.provision :chef_solo do |chef| chef.json = { :mysql => { :server_root_password => 'blahblah' }, :nodejs => { :version => '0.6.14', :dir => '/usr/local', :npm => '1.1.13' } } chef.cookbooks_path = "config/env/cookbooks" chef.add_recipe "apt" chef.add_recipe "mongodb::10gen_repo" chef.add_recipe "mongodb" chef.add_recipe "mysql::client" chef.add_recipe "mysql::server" chef.add_recipe "nodejs" chef.add_recipe "nodejs::npm" end