Go to file
Mitchell Hashimoto cb2513b1ec Environment#load_config! loads from the box directory and home directory as well 2010-03-18 14:54:43 -07:00
bin `vagrant init` now takes an optional parameter to specify the default box [close GH-6] 2010-03-17 17:15:12 -07:00
config Can now specify the UID/GID of the shared folders from the Vagrantfile 2010-03-15 12:33:03 -07:00
keys Added a README to the keys directory 2010-03-12 01:45:18 -08:00
lib Environment#load_config! loads from the box directory and home directory as well 2010-03-18 14:54:43 -07:00
templates Remove unnecessary newlines from errors.yml 2010-03-17 21:49:28 -07:00
test Environment#load_config! loads from the box directory and home directory as well 2010-03-18 14:54:43 -07:00
.gitignore Yard documentation rake task and gitignoring output. 2010-03-03 23:14:06 -08:00
Gemfile Updated VirtualBox gem dependency to 0.5.4 2010-03-17 21:54:07 -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 Updated VirtualBox gem dependency to 0.5.4 2010-03-17 21:54:07 -07:00
VERSION Version bump to 0.2.0 2010-03-16 11:53:59 -07:00
vagrant.gemspec Updated VirtualBox gem dependency to 0.5.4 2010-03-17 21:54:07 -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!