mirror of
https://github.com/nikdoof/dropbot.git
synced 2025-12-22 22:29:34 +00:00
Add Redis support and ZKB listening.
This commit is contained in:
9
Vagrantfile
vendored
Normal file
9
Vagrantfile
vendored
Normal 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
|
||||
Reference in New Issue
Block a user