summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
blob: 3826b89432c056ec169e452a1ae98dc984efd6b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure(2) do |config|

  config.vm.box = "ubuntu/trusty64"
  config.vm.provision "shell", inline: <<-SHELL
    curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
    sudo apt-get install -y nodejs
    sudo npm install -g git-hours
    sudo apt-get install git -y
  SHELL
end