Created
November 24, 2013 06:47
-
-
Save jjb/7624104 to your computer and use it in GitHub Desktop.
Vagrant is a way to manage virtual machine environments for development. It's a fantastic elegant tool. On their front page they have a set of 3 commands for setting up your first environment, and I think it's way too simplistic and kind of unhelpful, because it leaves you back at your own host OS shell doing nothing. Here's a better set of comm…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem install vagrant | |
vagrant box add base http://files.vagrantup.com/lucid32.box | |
mkdir my_first_project | |
cd my_first_project | |
vagrant init | |
vagrant up | |
vagrant ssh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment