WIP Vagrantfile

This commit is contained in:
Jack Bond-Preston 2020-11-23 21:41:51 +00:00
parent 618747270f
commit a2fc94c7bf
2 changed files with 7 additions and 0 deletions

3
.gitignore vendored
View File

@ -127,3 +127,6 @@ dmypy.json
# Pyre type checker # Pyre type checker
.pyre/ .pyre/
#vagrant
.vagrant

4
Vagrantfile vendored Normal file
View File

@ -0,0 +1,4 @@
Vagrant.configure("2") do |config|
config.vm.box = "generic/ubuntu2004"
config.vm.box_version = "3.1.6"
end