Skip to content

Instantly share code, notes, and snippets.

@kugaevsky
Created September 5, 2017 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kugaevsky/7fd3e9a6ded7176a5a23feaffbad4286 to your computer and use it in GitHub Desktop.
Save kugaevsky/7fd3e9a6ded7176a5a23feaffbad4286 to your computer and use it in GitHub Desktop.
#!/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