Commit 843a5aed75bd0ebd3a1da3149d2a244506523f6b

Authored by Luciano Prestes
1 parent 533fea40
Exists in add_vagrant

Add vagrant

Showing 2 changed files with 20 additions and 0 deletions   Show diff stats
Vagrantfile 0 → 100644
... ... @@ -0,0 +1,15 @@
  1 +# -*- mode: ruby -*-
  2 +# vi: set ft=ruby :
  3 +
  4 +Vagrant.configure(2) do |config|
  5 +
  6 + config.vm.box = "debian/wheezy64"
  7 + config.vm.network :forwarded_port, host: 8080, guest: 8080
  8 + config.vm.box_check_update = false
  9 + config.vm.provision :shell, path: "vagrant/bootstrap.sh"
  10 +
  11 + config.vm.provider "virtualbox" do |v|
  12 + v.memory = 4096
  13 + v.cpus = 2
  14 + end
  15 +end
... ...
vagrant/bootstrap.sh 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +#!/bin/bash
  2 +
  3 +apt-get update
  4 +apt-get install vim -y
  5 +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
0 6 \ No newline at end of file
... ...