Remove Vagrantfile as outdated and unused
If anyone needs it at any point, it's probably easier to write a new one and if consulting with a historic version is required, it's still available in history fixes #180
This commit is contained in:
parent
28440346b1
commit
db382f0075
1 changed files with 0 additions and 45 deletions
45
Vagrantfile
vendored
45
Vagrantfile
vendored
|
@ -1,45 +0,0 @@
|
|||
# -*- mode: ruby -*-
|
||||
# vi: set ft=ruby :
|
||||
|
||||
VAGRANTFILE_API_VERSION = "2"
|
||||
|
||||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||
|
||||
#Set box
|
||||
config.vm.box = "ubuntu/trusty64"
|
||||
|
||||
#Do not check fo updates
|
||||
config.vm.box_check_update = false
|
||||
|
||||
#Add private network
|
||||
config.vm.network "private_network", type: "dhcp"
|
||||
|
||||
#Redirect ports
|
||||
config.vm.network "forwarded_port", guest: 43110, host: 43110
|
||||
config.vm.network "forwarded_port", guest: 15441, host: 15441
|
||||
|
||||
#Sync folder using NFS if not windows
|
||||
config.vm.synced_folder ".", "/vagrant",
|
||||
:nfs => !Vagrant::Util::Platform.windows?
|
||||
|
||||
#Virtal Box settings
|
||||
config.vm.provider "virtualbox" do |vb|
|
||||
# Don't boot with headless mode
|
||||
#vb.gui = true
|
||||
|
||||
# Set VM settings
|
||||
vb.customize ["modifyvm", :id, "--memory", "512"]
|
||||
vb.customize ["modifyvm", :id, "--cpus", 1]
|
||||
end
|
||||
|
||||
#Update system
|
||||
config.vm.provision "shell",
|
||||
inline: "sudo apt-get update -y && sudo apt-get upgrade -y"
|
||||
|
||||
#Install deps
|
||||
config.vm.provision "shell",
|
||||
inline: "sudo apt-get install msgpack-python python-gevent python-pip python-dev -y"
|
||||
config.vm.provision "shell",
|
||||
inline: "sudo pip install msgpack --upgrade"
|
||||
|
||||
end
|
Loading…
Reference in a new issue