diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..2a0a54c --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,15 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +Vagrant.configure(2) do |config| + + config.vm.box = "debian/wheezy64" + config.vm.network :forwarded_port, host: 8080, guest: 8080 + config.vm.box_check_update = false + config.vm.provision :shell, path: "vagrant/bootstrap.sh" + + config.vm.provider "virtualbox" do |v| + v.memory = 4096 + v.cpus = 2 + end +end diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh new file mode 100644 index 0000000..c48c2ca --- /dev/null +++ b/vagrant/bootstrap.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +apt-get update +apt-get install vim -y +apt-get install python python-xapian python-apt python-cluster python-webpy python-simplejson python-numpy apt-xapian-index app-install-data python-xdg -y \ No newline at end of file -- libgit2 0.21.2