Last active
March 20, 2018 18:10
-
-
Save MatthewAlner/c2eda17c075127a364ed8844eb57c3e1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # sh -c "$(curl -fsSL https://gist.githubusercontent.com/MatthewAlner/c2eda17c075127a364ed8844eb57c3e1/raw/f223fbc8ba87c23d21836c536940f7776d73e659/codeanywhere_setup.sh)" | |
| echo "hello world" | |
| # setup shell stuff | |
| sudo apt-get -y update | |
| sudo apt-get -y install git curl wget tmux zsh | |
| sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
| sudo usermod -s /bin/zsh "$(whoami)" | |
| # install node | |
| curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash | |
| sudo apt-get update && sudo apt-get install -y nodejs | |
| # install 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how can I install mongodb in codeanywhere...
I have already tried the method given on https://github.com/nax3t/codeanywhere-instructions
please help me
thanks