Skip to content

Commit

Permalink
docs: update instructions setup development env
Browse files Browse the repository at this point in the history
When setting up the development environment using VirtualBox, you now
have to change the default provider, since VirtualBox is no longer the
default option.
  • Loading branch information
stsnel committed Oct 10, 2024
1 parent 289c681 commit e94a994
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/development/setting-up-development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,16 @@ git checkout development
```

2. Configure the virtual machines for development:

If you are using VirtualBox, open the `Vagrantfile` in an editor and change the `DEFAULT_VAGRANT_PROVIDER` line near
the top of the file so that it uses VirtualBox:

```bash
ENV['VAGRANT_DEFAULT_PROVIDER'] = "virtualbox"
```

Then use Vagrant to create the virtual machine (this applies to both VirtualBox and Libvirt):

```bash
vagrant up
```
Expand Down

0 comments on commit e94a994

Please sign in to comment.