Go to file
Mitchell Hashimoto 5c3171a8f9 Option parsing is in on the base command 2010-04-13 01:42:11 -07:00
bin New files for the new command structure. Ignore the `vagrant-temp` binary for now. 2010-04-13 01:22:53 -07:00
config allow setting mode to boot into, so can boot with gui which makes debugging networking setup easier 2010-04-10 16:45:01 -07:00
keys updated links on error messages and keys readme to reflect forthcoming windows documentation 2010-03-25 23:07:10 -07:00
lib Option parsing is in on the base command 2010-04-13 01:42:11 -07:00
templates `vagrant ssh-config` outputs .ssh/config ready entry for current environment 2010-04-12 21:00:42 -07:00
test Option parsing is in on the base command 2010-04-13 01:42:11 -07:00
.gitignore fix for uri parsing issues on windows with a small refactor thrown in on the side 2010-03-22 23:49:36 -07:00
Gemfile Update virtualbox dep to 0.6.0 even though its not released yet. (This is so user's running master will error if they attempt to update, forcing them to grab virtualbox master as well) 2010-04-12 00:11:10 -07:00
LICENSE MIT License 2010-03-07 16:58:24 -08:00
README.md Updated README with instructions to installing from Git 2010-03-09 09:01:20 -08:00
Rakefile Update virtualbox dep to 0.6.0 even though its not released yet. (This is so user's running master will error if they attempt to update, forcing them to grab virtualbox master as well) 2010-04-12 00:11:10 -07:00
VERSION Version bump to 0.2.0 2010-03-16 11:53:59 -07:00
vagrant.gemspec error for vagrant ssh on windows, error text, mario gem, still need doc pages for links in error.yml 2010-03-25 00:09:31 -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 Suns 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.

sudo gem install vagrant

To build your first virtual environment:

vagrant init
vagrant box add base http://files.vagrantup.com/base.box
vagrant up

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 build
sudo rake install

Contributing to Vagrant

To hack on vagrant, you'll need bundler which can be installed with a simple sudo gem install bundler. 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!