about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen <eugen@zeonfederated.com>2017-01-08 02:58:43 +0100
committerGitHub <noreply@github.com>2017-01-08 02:58:43 +0100
commit6d097d559b7fc2b7a6fc365a1205dde0602b9e50 (patch)
treef0146e01efbb48ba53ecca1b848d1a99cb4534e0
parent4447c4c7c8bec66b8aa953221c61b8f7d5d64053 (diff)
parentdb3d5d811c34eb8e076e8a93e56d3729f08500f7 (diff)
Merge pull request #434 from vjackson725/fix_vagrantfile
Fix Vagrantfile to include yarn
-rw-r--r--Vagrantfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 5041dde39..56762f679 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -5,6 +5,10 @@ $provision = <<SCRIPT
 
 cd /vagrant # This is where the host folder/repo is mounted
 
+# Add the yarn repo + yarn repo keys
+curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
+sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
+
 # Add repo for Ruby 2.3 binaries
 sudo apt-add-repository ppa:brightbox/ruby-ng
 
@@ -33,6 +37,7 @@ sudo apt-get install \
   redis-tools \
   postgresql \
   postgresql-contrib \
+  yarn \
   -y
 
 # Set Ruby 2.3 as 'ruby'