We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 051f62c commit 4e6591bCopy full SHA for 4e6591b
.gitignore
@@ -1,2 +1,4 @@
1
+.vagrant/
2
+
3
node_modules
4
*.log
Vagrantfile
@@ -0,0 +1,18 @@
+$script = <<SCRIPT
+wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.22.0/install.sh | bash
+source ~/.nvm/nvm.sh
+nvm install 0.10
5
+nvm alias default 0.10
6
+SCRIPT
7
8
+VAGRANTFILE_API_VERSION = "2"
9
10
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
11
12
+ config.vm.box = "ubuntu/trusty64"
13
14
+ config.vm.provision "shell", inline: $script, privileged: false
15
16
+ config.vm.network "forwarded_port", guest: 3000, host: 3000
17
18
+end
0 commit comments