Skip to content

Instantly share code, notes, and snippets.

@cristiandley
Forked from digilord/meteor_prep.sh
Created March 6, 2014 04:15
Show Gist options
  • Save cristiandley/9382384 to your computer and use it in GitHub Desktop.
Save cristiandley/9382384 to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo apt-get install build-essential -y
sudo apt-get install python-software-properties
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update -y
sudo apt-get install nodejs -y
sudo apt-get install mongodb -y
sudo apt-get install git -y
sudo apt-get install nginx -y
sudo apt-get install htop -y
sudo apt-get install tree -y
sudo apt-get install git-core -y
curl https://install.meteor.com | /bin/sh
sudo npm install -g meteorite
sudo npm install -g pm2
@cristiandley
Copy link
Author

added python properties just in case that add-apt-repository fails

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