Go to file
Mitchell Hashimoto 3c1aac7ff5 CleanMachineFolder middleware to clean empty machine folders [closes GH-98] 2010-07-14 20:58:37 -07:00
bin Update binary to not include rubygems 2010-04-13 22:52:11 -07:00
config Concepts of "Hosts" introduced, preparing for host-specific behavior. 2010-07-10 22:07:10 -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 CleanMachineFolder middleware to clean empty machine folders [closes GH-98] 2010-07-14 20:58:37 -07:00
templates Fix error message that tells people to install VirtualBox 3.1.x. 2010-07-13 09:06:31 -07:00
test CleanMachineFolder middleware to clean empty machine folders [closes GH-98] 2010-07-14 20:58:37 -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 Point to RubyGems string instead of symbol for Gemfile 2010-06-06 19:51:53 -07:00
LICENSE MIT License 2010-03-07 16:58:24 -08:00
README.md Added link to github source page 2010-07-08 22:13:22 -07:00
Rakefile v0.4.2 2010-07-02 09:36:28 -07:00
VERSION Bump to 0.4.3.dev for development 2010-07-02 09:37:15 -07:00
vagrant.gemspec CleanMachineFolder middleware to clean empty machine folders [closes GH-98] 2010-07-14 20:58:37 -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.

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
bundle exec rake

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