Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Documentation:Developer] Add packaged VM documentation #587

Merged
merged 3 commits into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions _docs/developer/getting_started/vm_install_using_vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,23 @@ Below are quick steps to get everything installed and running.
vagrant up
```

Vagrant will build your VM. This will take maybe 30 minutes to a
few hours depending on your Internet connection speed. When this
command finishes, your VM is ready to use.
If you are using VirtualBox as your provider, you will by default use
a pre-packaged Submitty VM. This will have all of Submitty already setup.
Vagrant will build your VM for you. This process will take 10 minutes to
maybe half an hour depending on your internet connection speed.
When this command finishes, your VM is ready to use.

If you wish to run `vagrant up` from scratch, on Linux or Mac type:
```
BASE_BOX=1 vagrant up
```
or on Windows, type:
```
SET BASE_BOX=1
vagrant up
```
This process will take anywhere from 30 minutes to a few hours depending on your
internet speed.

7. When the `vagrant up` command completes successfully, you will be
able to access the Submitty website (instructions follow in the
Expand Down
Loading