Last active
August 29, 2015 14:27
-
-
Save julianvargasalvarez/a51043384cd21dd91422 to your computer and use it in GitHub Desktop.
Env setup
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
sudo adduser %USER% sudo | |
sudo apt-get update | |
sudo apt-get install curl git-core vim postgresql libpq-dev python python-virtualenv python-pip python-dev build-essential -y | |
sudo pip install --upgrade pip | |
sudo pip install --upgrade virtualenv | |
sudo apt-get install redis-server libxslt-dev libxml2-dev -y | |
sudo apt-get install libmemcached-dev zlib1g-dev libssl-dev python-dev -y | |
sudo apt-get install mysql-server -y | |
sudo apt-get install libmysqlclient-dev libmysql-ruby -y | |
sudo apt-get install libssl-dev libfontconfig1-dev gitk -y | |
sudo apt-get install htop -y | |
sudo apt-get install libcurl4-openssl-dev -y | |
mkdir ~/.vim_backup | |
mkdir ~/.vim_temp | |
curl -L https://get.rvm.io | bash -s stable | |
source ~/.bash_profile | |
rvm install 2.1.0 | |
rvm use --default 2.1.0 | |
# Node version manager | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.25.4/install.sh | bash | |
source ~/.bash_profile | |
nvm install 0.11 | |
# mongo | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10 | |
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 -y | |
sudo apt-get install mongodb-10gen -y | |
# editar el /etc/sudoes y modificar la linea quedice `%sudo ALL=.......` para que quede `%sudo ALL=(ALL:ALL) NOPASSWD: ALL` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment