Created
September 5, 2017 16:21
-
-
Save kugaevsky/7fd3e9a6ded7176a5a23feaffbad4286 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update | |
sudo apt-get install -y build-essential | |
sudo apt-get install -y yarn | |
sudo apt-get install -y nodejs | |
gem install bundler rake | |
bundle install | |
yarn install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment