add minimalist dev tooling Vagrantfile

This commit is contained in:
Pete Hodgson
2014-12-06 22:14:57 -08:00
parent 182cff5ccf
commit 1995f28876
2 changed files with 15 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/.vagrant

14
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,14 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
PROVISION_SCRIPT = <<SCRIPT
pacman -Sy --noconfirm go
SCRIPT
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "terrywang/archlinux"
config.vm.provision "shell", inline: PROVISION_SCRIPT
end