Last active
January 30, 2018 00:21
-
-
Save harrypujols/d816625ea9c0d33d8842fbe3488f69ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# IEUser, Passw0rd! | |
# run a windows virtual machine for cross-browser testing | |
Vagrant.configure("2") do |config| | |
config.vm.box = "Microsoft/EdgeOnWindows10" | |
config.vm.provider "virtualbox" do |vb| | |
vb.gui = true | |
vb.memory = "1024" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment