vagrant/README.md

85 lines
2.8 KiB
Markdown
Raw Normal View History

2010-02-10 07:10:16 +00:00
# Vagrant
2013-01-14 01:44:08 +00:00
* Website: [http://www.vagrantup.com](http://www.vagrantup.com)
2011-11-03 04:19:06 +00:00
* Source: [https://github.com/mitchellh/vagrant](https://github.com/mitchellh/vagrant)
* IRC: `#vagrant` on Freenode
* Mailing list: [Google Groups](http://groups.google.com/group/vagrant-up)
2010-03-07 20:05:53 +00:00
2013-01-14 01:44:08 +00:00
Vagrant is a tool for building and distributing development environments.
2010-03-07 20:05:53 +00:00
2013-01-14 01:44:08 +00:00
Vagrant provides the framework and configuration format to create and
manage complete portable development environments. These development
environments can live on your computer or in the cloud, and are portable
between Windows, Mac OS X, and Linux.
2010-03-07 20:05:53 +00:00
## Quick Start
First, make sure your development machine has [VirtualBox](http://www.virtualbox.org)
2013-01-14 01:44:08 +00:00
installed. After this, [download and install the appropriate Vagrant package for your OS](http://downloads.vagrantup.com). If you're not on Mac OS X or Windows, you'll need
2012-06-27 16:35:54 +00:00
to add `/opt/vagrant/bin` to your `PATH`. After this, you're ready to go!
2010-03-07 20:05:53 +00:00
To build your first virtual environment:
2013-01-14 01:44:08 +00:00
vagrant init precise32 http://files.vagrantup.com/precise32.box
2010-03-07 20:05:53 +00:00
vagrant up
Note: The above `vagrant up` command will also trigger Vagrant to download the
2013-01-14 01:44:08 +00:00
`precise32` box via the specified URL. Vagrant only does this if it detects that
the box doesn't already exist on your system.
2011-11-24 23:05:51 +00:00
## Getting Started Guide
2010-03-07 20:05:53 +00:00
To learn how to build a fully functional rails development environment, view the
[getting started guide](http://docs.vagrantup.com/v2/getting-started/index.html).
2010-03-07 20:05:53 +00:00
## 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:
2010-08-01 00:39:54 +00:00
rake install
2010-02-10 07:10:16 +00:00
## Contributing to Vagrant
2011-11-03 04:27:32 +00:00
### Dependencies and Unit Tests
2010-02-10 07:13:16 +00:00
To hack on vagrant, you'll need [bundler](http://github.com/carlhuda/bundler) which can
2011-11-03 04:19:06 +00:00
be installed with a simple `gem install bundler`. Afterwords, do the following:
2010-02-10 07:10:16 +00:00
bundle install
2010-08-14 06:26:48 +00:00
rake
2011-11-03 04:27:32 +00:00
This will run the unit test suite, which should come back all green! Then you're good to go!
2010-12-24 00:35:41 +00:00
If you want to run Vagrant without having to install the gem, you may use `bundle exec`,
like so:
2013-12-05 22:31:25 +00:00
bundle exec vagrant help
2011-11-03 04:27:32 +00:00
### Acceptance Tests
2013-12-05 22:31:25 +00:00
Vagrant also comes with an acceptance test suite that does black-box
tests of various Vagrant components. Note that these tests are **extremely
slow** because actual VMs are spun up and down. The full test suite can
take hours. Instead, try to run focused component tests.
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
To run the acceptance test suite, first copy `vagrant-spec.config.example.rb`
to `vagrant-spec.config.rb` and modify it to valid values. The places you
should fill in are clearly marked.
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
Next, see the components that can be tested:
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
```
$ rake acceptance:components
cli
provider/virtualbox/basic
...
```
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
Then, run one of those components:
2011-11-03 04:27:32 +00:00
2013-12-05 22:31:25 +00:00
```
$ rake acceptance:run COMPONENTS="cli"
...
```