Skip to content

Instantly share code, notes, and snippets.

@davidlares
Last active September 2, 2019 01:56
Show Gist options
  • Save davidlares/aeb015d65b06ce3773233e40a202ac7f to your computer and use it in GitHub Desktop.
Save davidlares/aeb015d65b06ce3773233e40a202ac7f to your computer and use it in GitHub Desktop.
Rails 5.2 full environment Setup for Debian/Ubuntu OS
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install -y 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 nodejs yarn
cd
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL
rbenv install --verbose 2.5.0
ruby -v
rbenv global 2.5.0
ruby -v
gem install bundler
node -v
gem install rails -v 5.2
rbenv rehash
rails -v
rails new project
cd project
rails s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment