Initial commit
This commit is contained in:
commit
2cc90ca240
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
11
.kateproject
Normal file
11
.kateproject
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "Base Vagrant Project",
|
||||
"index": true,
|
||||
"files": [ {
|
||||
"directory": ".",
|
||||
"recursive": 1,
|
||||
"filters": [
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
11
Vagrantfile
vendored
Normal file
11
Vagrantfile
vendored
Normal 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
11
vagrant/lin_bootstrap.sh
Normal 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++
|
2
vagrant/win_bootstrap.bat
Normal file
2
vagrant/win_bootstrap.bat
Normal file
@ -0,0 +1,2 @@
|
||||
powershell "Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')"
|
||||
|
Loading…
Reference in New Issue
Block a user