Skip to content

Instantly share code, notes, and snippets.

View epmatsw's full-sized avatar
🏠
Working from home

Will Stamper epmatsw

🏠
Working from home
View GitHub Profile
@epmatsw
epmatsw / Vagrantfile
Last active August 27, 2015 00:36 — forked from am/Vagrantfile
Vagrant box to compile stasis projects (gems: stasis, haml, coffee-script, sass, rhc).
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network :forwarded_port, guest: 4000, host: 4000
config.vm.hostname = 'tnw-box'
config.vm.provision :puppet do |puppet|
puppet.manifests_path = "puppet/manifests"