Add Redis support and ZKB listening.

This commit is contained in:
2014-08-27 17:17:04 +01:00
parent 1b746ad609
commit 1b3557c6b5
6 changed files with 82 additions and 4 deletions

9
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,9 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu"
config.vm.network :forwarded_port, guest: 6379, host: 6379
# Set virtual machine memory size
config.vm.provider :virtualbox do |vbox|
vbox.customize ["modifyvm", :id, "--memory", 1024]
end
config.vm.provision :shell, :path => ".vagrant/init.sh"
end