Sha256: 521b7067894b2526dec8a9befa256f41f143e95614981706c0924401812ac6cb

Contents?: true

Size: 1.96 KB

Versions: 17

Compression:

Stored size: 1.96 KB

Contents

# Vagrant

* Website: [http://vagrantup.com](http://vagrantup.com)
* IRC: `#vagrant` on Freenode
* Mailng list: [Google Groups](http://groups.google.com/group/vagrant-up)

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

By providing automated creation and provisioning of virtual machines using [Sun’s VirtualBox](http://www.virtualbox.org),
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?](http://vagrantup.com/docs/getting-started/index.html)”

## Quick Start

First, make sure your development machine has [VirtualBox](http://www.virtualbox.org)
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](http://vagrantup.com/getting-started/index.html).

There is also a fairly short (12 minute) [getting started video](http://vimeo.com/9976342) 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](http://github.com/carlhuda/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!

Version data entries

17 entries across 17 versions & 3 rubygems

Version Path
vagrantup-0.3.4 README.md
vagrantup-0.3.3 README.md
vagrantup-0.3.2 README.md
vagrantup-0.3.1 README.md
vagrantup-0.3.0 README.md
vagrantup-0.2.0 README.md
vagrantup-0.1.4 README.md
vagrant-0.3.4 README.md
vagrant-0.3.3 README.md
vagrant-0.3.2 README.md
vagrant-0.3.1 README.md
vagrant-0.3.0 README.md
bmabey-vagrant-0.2.0 README.md
vagrant-0.2.0 README.md
vagrant-0.2.0.pre README.md
vagrant-0.1.4 README.md
vagrant-0.1.4.pre.a README.md