# -*- mode: ruby -*- # vi: set ft=ruby : # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # Every Vagrant virtual environment requires a box to build off of. config.vm.box = "precise64" # The url from where the 'config.vm.box' box will be fetched if it # doesn't already exist on the user's system. config.vm.box_url = "http://files.vagrantup.com/precise64.box" config.vm.network :forwarded_port, host: 7474, guest: 80 # neo4j config.vm.hostname = "devise-neo4j.develop" config.vm.provision "ansible" do |ansible| ansible.playbook = "provisioning/vagrant.yml" # ansible.verbose = "vvvv" end end