Skip to content

Instantly share code, notes, and snippets.

@frknikiz
Created June 15, 2015 10:16
Show Gist options
  • Save frknikiz/1d999b24ec898bbf81b7 to your computer and use it in GitHub Desktop.
Save frknikiz/1d999b24ec898bbf81b7 to your computer and use it in GitHub Desktop.
Nodejs vagrant file example(Laravel homestead)
Vagrant::Config.run do |config|
config.vm.box = "laravel/homestead"
config.vm.box_url = "https://atlas.hashicorp.com/laravel/boxes/homestead"
config.vm.forward_port 3000, 3000
config.vm.share_folder "app", "/home/vagrant/app", "app"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment