...
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. Be sure you have the prerequisites installed! Each link should bring you directly to the proper download page.Now open up a Git Bash window (on Windows) or a terminal window (on Mac), and run the following commands:
Code Block | ||
---|---|---|
| ||
# Clone the repo git clone https://github.com/uw-midsun/box.git && cd box # Download and load the vagrant box vagrant up && vagrant reload # Access the box vagrant ssh |
Be sure you have the prerequisites installed! Each link should bring you directly to the proper download page.
Congratulations! If you're now at a prompt that says something along the lines of vagrant@midsunbox
, you're in our development environment.
...