Created
July 29, 2015 15:52
-
-
Save rkennesson/6f5ec9c916976caf8d38 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#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