Skip to content

Instantly share code, notes, and snippets.

@rkennesson
Created July 29, 2015 15:52
Show Gist options
  • Save rkennesson/6f5ec9c916976caf8d38 to your computer and use it in GitHub Desktop.
Save rkennesson/6f5ec9c916976caf8d38 to your computer and use it in GitHub Desktop.
#Mongo Install
#https://jira.mongodb.org/browse/SERVER-18329
echo "deb http://repo.mongodb.org/apt/debian wheezy/mongodb-org/3.0 main" | tee /etc/apt/sources.list.d/mongodb-org-3.0.list
apt-get update
apt-get install -y mongodb-org-server
apt-get install -y mongodb-org
#Node.js install
#https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
apt-get update
apt-get install -y curl
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
apt-get install -y nodejs build-essential
#Install Express, Angular
#http://learn.mean.io/#mean-stack-installation
#npm install -g gulp
#npm install -g bower
#npm install bootstrap
#npm install -g mean-cli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment