Created
February 1, 2017 18:35
-
-
Save scottsword/980e2309fa41e590aa672ef43711ff45 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 -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash | |
export NVM_DIR="/Users/$USER/.nvm" | |
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm | |
nvm --version | |
nvm install | |
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 | |
export PATH="$PATH:`yarn global bin`" | |
yarn --version | |
yarn install | |
npm start | |
echo Setup completed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment