Skip to content

Instantly share code, notes, and snippets.

@mnyrop
Last active March 7, 2018 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mnyrop/3a7321c3dcc3bd562cb74d636aeae3bc to your computer and use it in GitHub Desktop.
Save mnyrop/3a7321c3dcc3bd562cb74d636aeae3bc to your computer and use it in GitHub Desktop.
wax vm config
# -*- mode: ruby -*-
# vi: set ft=ruby :
# to use forwarded_port, serve jekyll with --host 0.0.0.0
Vagrant.configure("2") do |config|
config.vm.box = "marii/wax"
config.vm.box_version = "0.0.1"
config.vm.network "forwarded_port", guest: 4000, host: 4000
config.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 4
v.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment