Last active
August 29, 2015 14:06
-
-
Save apendua/46bcbfb403a8bb5b2ce5 to your computer and use it in GitHub Desktop.
install-nebula.sh
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 | |
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 | |
# we can probably get rid of this one later on | |
sudo npm install -g meteorite | |
sudo npm install -g meteor-nebula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment