Created
May 22, 2014 00:03
-
-
Save damiann/25a97e811c95d3417f2a to your computer and use it in GitHub Desktop.
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
# django | |
Vagrant.configure("2") do |config| | |
config.vm.define :djangovm do |django_config| | |
django_config.vm.box = "lucid32" | |
django_config.vm.network :forwarded_port, guest: 8000, host: 8001 | |
django_config.vm.synced_folder "../app/shared", "/home/vagrant/django" | |
django_config.vm.provision :chef_solo do |chef| | |
chef.cookbooks_path = "../app/cookbooks" | |
chef.add_recipe "apt" | |
chef.add_recipe "git" | |
chef.add_recipe "vim" | |
chef.add_recipe "apache2::mod_wsgi" | |
chef.add_recipe "build-essential" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment