Created
June 15, 2015 10:16
-
-
Save frknikiz/1d999b24ec898bbf81b7 to your computer and use it in GitHub Desktop.
Nodejs vagrant file example(Laravel homestead)
This file contains 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
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