Skip to content

Instantly share code, notes, and snippets.

@mlowicki
Last active August 29, 2015 14:16
Show Gist options
  • Save mlowicki/83c2f9592ed86215fd92 to your computer and use it in GitHub Desktop.
Save mlowicki/83c2f9592ed86215fd92 to your computer and use it in GitHub Desktop.
Vagrantfile for Skyline in Virtualenv
Vagrant.configure(2) do |config|
config.vm.box = "wheezy64"
config.vm.network :forwarded_port, guest: 1500, host: 1500
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--cpus", 4]
v.customize ["modifyvm", :id, "--memory", 4096]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment