Sha256: 78041f10d5ad774bf8d77b59d2f5315972abc3aaa43a040ba43f7855ca9551b3
Contents?: true
Size: 746 Bytes
Versions: 8
Compression:
Stored size: 746 Bytes
Contents
# -*- 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
Version data entries
8 entries across 8 versions & 2 rubygems