From a2fc94c7bff436d4086cb5901f0daad5c902cbf7 Mon Sep 17 00:00:00 2001 From: Jack Bond-Preston Date: Mon, 23 Nov 2020 21:41:51 +0000 Subject: [PATCH] WIP Vagrantfile --- .gitignore | 3 +++ Vagrantfile | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 Vagrantfile diff --git a/.gitignore b/.gitignore index b6e4761..a43f3b3 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,6 @@ dmypy.json # Pyre type checker .pyre/ + +#vagrant +.vagrant \ No newline at end of file diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..1b7762d --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,4 @@ +Vagrant.configure("2") do |config| + config.vm.box = "generic/ubuntu2004" + config.vm.box_version = "3.1.6" +end