Skip to content

Instantly share code, notes, and snippets.

@hashrock
Last active March 29, 2019 18:02
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 hashrock/a32f7a840017a415d3720dbd8db628cb to your computer and use it in GitHub Desktop.
Save hashrock/a32f7a840017a415d3720dbd8db628cb to your computer and use it in GitHub Desktop.
Initial setup for BoW
curl -L git.io/nodebrew | perl - setup
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bashrc
source ~/.bashrc
nodebrew install-binary latest
nodebrew use latest
git config --global user.email "hashrock@users.noreply.github.com"
git config --global user.name "hashrock"
npm install --global yarn
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 yarn
yarn global add live-server serve
@hashrock
Copy link
Author

yarnのインストール時にはユーザに問い合わせあり。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment