...
The idea is that Vagrant
uses VirtualBox
to provision a virtual machine for our pre-configured image, box. This virtual machine contains a fully integrated development environment, including everything you'll need to develop software for our team. Now open up a Git Bash window (on Windows) or a terminal window (on Mac), and run the following commands:
First, clone the repo: checkout the ubuntu-20.04 branch for the new box
Code Block |
---|
# Clone the repo
git clone https://github.com/uw-midsun/box.git && cd box
# checkout the ubuntu-20.04 branch for the new version of the box
git checkout ubuntu-20.04 |
Then, you will have to download our vagrant
box:
...