Skip to content

Instantly share code, notes, and snippets.

@so77id
Last active March 29, 2016 16:41
Show Gist options
  • Save so77id/2457f56cfb747c417306 to your computer and use it in GitHub Desktop.
Save so77id/2457f56cfb747c417306 to your computer and use it in GitHub Desktop.
sudo apt-get install language-pack-es
sudo apt-get update
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev zsh libmysqlclient-dev redis-server imagemagick
#Installing OH MY ZSH
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
#Config git
git config --global color.ui true
git config --global user.name "Crowdlatam"
git config --global user.email "info@clatam.cl"
ssh-keygen -t rsa -C "info@clatam.cl"
#Install nvm
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
echo 'export NVM_DIR="$HOME/.nvm"' >> ~/.zshrc
echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"' >> ~/.zshrc
#Install specific version of node
nvm install 0.10.4
nvm use 0.10.4
#update npm
curl https://www.npmjs.com/install.sh | sh
#Install grunt-cli and bower
npm install -g grunt-cli bower
#MongoDB
#https://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
sudo apt-get update
sudo apt-get install -y mongodb-org
#Instal pm2
npm install -g pm2
npm install -g phantomjs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment