add minimalist dev tooling Vagrantfile
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/.vagrant
|
||||
14
Vagrantfile
vendored
Normal file
14
Vagrantfile
vendored
Normal 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
|
||||
Reference in New Issue
Block a user