Skip to content

Instantly share code, notes, and snippets.

@kenbolton
Created January 14, 2013 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenbolton/4534579 to your computer and use it in GitHub Desktop.
Save kenbolton/4534579 to your computer and use it in GitHub Desktop.
This is the base Vagrantfile for my Django work. I don't know how I came to this, but it works. I first run `vagrant box add precise64 http://files.vagrantup.com/precise64.box` and `vagrant init precise64`, drop in this Vagrantfile, then `vagrant up`. Read the current Vagrant documentation, as the values in this gist may no longer be valid!
Vagrant::Config.run do |config|
config.vm.box = "precise64"
config.vm.network :hostonly, "192.168.124.10"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment