Pretty simple to set up a Rails project that takes advantage of Vagrant and Chef.
git clone https://github.com/dydx/rails-vagrant-chef.git your_new_project
cd your_new_project
rails new .
vagrant up
vagrant ssh
-
The
vagrant up
command is going to probably take a little while. Go ahead and take a smoke break or make a sandwich the first time you run it. -
If you ever edit the
Vagrantfile
or theCheffile
, you'll need to runvagrant provision
to see those changes take place.