Initial commit

This commit is contained in:
James Whiteman 2020-07-29 12:27:30 +01:00
commit 2cc90ca240
5 changed files with 35 additions and 0 deletions

0
.gitignore vendored Normal file
View File

11
.kateproject Normal file
View File

@ -0,0 +1,11 @@
{
"name": "Base Vagrant Project",
"index": true,
"files": [ {
"directory": ".",
"recursive": 1,
"filters": [
]
}
]
}

11
Vagrantfile vendored Normal file
View File

@ -0,0 +1,11 @@
Vagrant.configure("2") do |config|
config.vm.define "lin" do |lin|
lin.vm.box = "ubuntu/bionic64"
lin.vm.provision :shell, path: "vagrant/lin_bootstrap.sh"
end
config.vm.define "win", autostart: false do |win|
win.vm.box = "senglin/win-10-enterprise-vs2015community"
win.vm.box_version = "1.0.0"
win.vm.provision :shell, path: "vagrant/win_bootstrap.bat"
end
end

11
vagrant/lin_bootstrap.sh Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# Update repositories
apt-get update
apt-get upgrade
# Install utilities
apt-get install -y unzip
apt-get install -y git
apt-get install -y make
apt-get install -y g++

View File

@ -0,0 +1,2 @@
powershell "Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')"