For WordCamp Europe 2015, I was given the opportunity to help a large number of developers get set up for contributing to WordPress Core quickly.
The most cross-platform and standard way of doing this is with VVV — with the only problem being large download size and conference Wi-Fi. Thus, we needed a packaged way to distribute a development environment using flash drives or Adhoc networking.
If you’re in a situation where Wi-Fi won’t be a problem on contributor day, great! If you need a solution for this, read on.
Contents for Contributors
Building a base VVV package
Using a ZIP for VVV is important because otherwise the checkout will have too many files to quickly copy from a flash drive or a local. To build the VVV ZIP package, follow these steps:
Contributor Steps to Get Started
- Install VirtualBox
- Install Vagrant
- Copy
VVV.zip
to local drive and extract
- Add pre-provisioned box to Vagrant:
1 | vagrant box add ubuntu/trusty64 vvv-contribute.box |
- Optional, and will download, but manages hosts file:
1 | vagrant plugin install vagrant-hostsupdater |
- Start up Vagrant:
1 | vagrant up --provider virtualbox |
Caveats
- Once a VirtualBox base box has been added manually from a system, it can’t be automatically updated without removing it, and adding it directly from the web. This means that updates to the Ubuntu base box would need to be done manually by contributors if they want to update later.
- This will not solve all potential Windows issues. While it worked with the majority of machines, there were some Windows users who could not unzip the file with native file ZIP utility, or had other incompatibilities with Vagrant.
Feedback
Have any questions or suggestions? Let me know in the comments!
1 Edit (05/23/2016) – Looks like Vagrant is including the user ID that created the box in a .vagrant
directory, which is causing problems for contributors when starting up the box on their local machines.