-
Notifications
You must be signed in to change notification settings - Fork 2
Instalação
isabarros edited this page Mar 16, 2015
·
4 revisions
Os passos a seguir são indicados para a versão 14.10 do Ubuntu. Os passos para a instalação em outros sistemas encontram-se no link de referência no final desta página.
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm install 2.2.1
rvm use 2.2.1 --default
ruby -v
Documentação e bundler: echo "gem: --no-ri --no-rdoc" > ~/.gemrc gem install bundler
git config --global color.ui true
git config --global user.name "YOUR NAME"
git config --global user.email "[email protected]"
ssh-keygen -t rsa -C "[email protected]"
cat ~/.ssh/id_rsa.pub
ssh -T [email protected]
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs
gem install rails -v 4.2.0
sudo sh -c "echo 'deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main' > /etc/apt/sources.list.d/pgdg.list"
wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql-common
sudo apt-get install postgresql-9.3 libpq-dev
Configurando o PostgreSQL: sudo -u postgres createuser username -s
# If you would like to set a password for the user, you can do the following
sudo -u postgres psql
postgres=# \password username
git clone https://github.com/Bouckaert/donamaria.git
Para outros sistemas operacionais (Mac OSX e outras versões do Ubuntu) ou instalação com rbenv consultar: https://gorails.com/setup/ubuntu/14.10#ruby