Skip to content

Instantly share code, notes, and snippets.

@ckhrysze
Created September 25, 2014 18:14
Show Gist options
  • Save ckhrysze/d97719b18a1c3fa76c18 to your computer and use it in GitHub Desktop.
Save ckhrysze/d97719b18a1c3fa76c18 to your computer and use it in GitHub Desktop.
Vagrant setup assuming my base box
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "meteor"
config.vm.network "private_network", ip: "192.168.11.11"
config.vm.synced_folder('.', '/vagrant',
type: 'rsync',
rsync__exclude: ['.meteor/local', '.git']
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment