Go to file
Mitchell Hashimoto b536063fb6 README update. 2010-03-07 12:05:53 -08:00
bin vagrant-up now starts the VM if its already created, rather than giving an error. 2010-03-02 22:07:04 -08:00
config moved hanging dotfile_name under Vagrant.config.vagrant 2010-03-04 23:50:08 -08:00
lib Box existence error checking is now in proper 'require_box' 2010-03-06 21:48:39 -08:00
script And then God said unto thee, "You shall be named Vagrant." 2010-02-09 23:08:23 -08:00
templates Updated template Vagrant file to use "base" box by default 2010-03-01 01:16:45 -08:00
test Box existence error checking is now in proper 'require_box' 2010-03-06 21:48:39 -08:00
.gitignore Yard documentation rake task and gitignoring output. 2010-03-03 23:14:06 -08:00
Gemfile package and unpackage moved to tar, tarruby added 2010-02-19 00:54:49 -08:00
README.md README update. 2010-03-07 12:05:53 -08:00
Rakefile Yard documentation rake task and gitignoring output. 2010-03-03 23:14:06 -08:00
VERSION Bumped version to 0.0.1 for testing purposes. 2010-03-03 22:07:55 -08:00

README.md

Vagrant

Website: http://vagrantup.com IRC: #vagrant on Freenode Mailng list: Google Groups

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.

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!