Skip to content

Instantly share code, notes, and snippets.

@subhog
Forked from apendua/install-nebula.sh
Last active August 29, 2015 14:06
Show Gist options
  • Save subhog/3e1b2458473efa1710bb to your computer and use it in GitHub Desktop.
Save subhog/3e1b2458473efa1710bb to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ ! -e $HOME/.meteor ];
then
sudo curl https://install.meteor.com/ | sh
fi
sudo apt-get update
sudo apt-get install -y python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
sudo echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list
sudo apt-get update
sudo apt-get remove -y apache
sudo apt-get install -y build-essential git haproxy nodejs mongodb
sudo npm install -g meteor-nebula
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment