Go to file
Mitchell Hashimoto ed8bf34153 Chef client accepts nil run list to load run list from server [closes GH-429] 2011-07-25 21:33:36 -07:00
bin Specify program names for previous logging locations 2011-07-10 16:50:26 -07:00
config Disable SSH caching for now 2011-07-21 14:55:03 -07:00
contrib Emacs Vagrantfile config 2011-01-05 17:13:30 -08:00
keys Change comment on public key to be more descriptive of its role 2010-10-01 19:30:51 -07:00
lib Chef client accepts nil run list to load run list from server [closes GH-429] 2011-07-25 21:33:36 -07:00
templates Better validation for networking configuration 2011-07-22 23:53:19 -07:00
test Chef client accepts nil run list to load run list from server [closes GH-429] 2011-07-25 21:33:36 -07:00
.gitignore Update .gitignore 2011-07-22 22:58:31 -07:00
.yardopts YARD and some documentation 2010-09-22 09:43:30 -06:00
CHANGELOG.md Chef client accepts nil run list to load run list from server [closes GH-429] 2011-07-25 21:33:36 -07:00
Gemfile Remove YARD since it causes problems with Lion 2011-07-20 17:23:19 -07:00
LICENSE MIT License 2010-03-07 16:58:24 -08:00
README.md Fix getting started link in README [closes GH-284] 2011-01-24 09:52:58 -08:00
Rakefile Remove YARD since it causes problems with Lion 2011-07-20 17:23:19 -07:00
vagrant.gemspec Depend on virtualbox 0.9.1 for minor fixes 2011-07-22 23:28:53 -07:00

README.md

Vagrant

Vagrant is a tool for building and distributing virtualized development environments.

By providing automated creation and provisioning of virtual machines using Oracles VirtualBox, Vagrant provides the tools to create and configure lightweight, reproducible, and portable virtual environments. For more information, see the part of the getting started guide on “Why Vagrant?

Quick Start

First, make sure your development machine has VirtualBox installed. The setup from that point forward is very easy, since Vagrant is simply a rubygem.

gem install vagrant

To build your first virtual environment:

vagrant init lucid32 http://files.vagrantup.com/lucid32.box
vagrant up

Note: The above vagrant up command will also trigger Vagrant to download the lucid32 box via the specified URL. Vagrant only does this if it detects that the box doesn't already exist on your system.

Getting Started Guide and Video

To learn how to build a fully functional rails development environment, view the getting started guide.

There is also a fairly short (12 minute) getting started video which explains how to build a fully functional LAMP development environment, which covers a few parts of Vagrant in more detail than the website guide.

Installing the Gem from Git

If you want the bleeding edge version of Vagrant, we try to keep master pretty stable and you're welcome to give it a shot. The following is an example showing how to do this:

rake install

Contributing to Vagrant

To hack on vagrant, you'll need bundler which can be installed with a simple gem install bundler --pre. Afterwords, do the following:

bundle install
rake

This will run the test suite, which should come back all green! Then you're good to go!

If you want to run Vagrant without having to install the gem, you may use bundle exec, like so:

bundle exec bin/vagrant help