Skip to content

Instantly share code, notes, and snippets.

@MatthewAlner
Last active March 20, 2018 18:10
Show Gist options
  • Select an option

  • Save MatthewAlner/c2eda17c075127a364ed8844eb57c3e1 to your computer and use it in GitHub Desktop.

Select an option

Save MatthewAlner/c2eda17c075127a364ed8844eb57c3e1 to your computer and use it in GitHub Desktop.
#!/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
@jeetu2312
Copy link
Copy Markdown

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

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