This tutorial is about setting up environment for RubyOnRails on Ubuntu 14.04. First of all, update & upgrade your system:
All examples here for deploy RoR application with unicorn, staging machine (where we deploys) available via ssh by ssh_key...
robmclarty.com
Install capistrano: add to Gemfile group :development do gem 'capistrano' gem 'rvm-capistrano' end Then cd to project root folder...
Best results in other decks
export PATH=~/.local/bin:$PATH export PATH=~/bin:$PATH function parse_git_branch () { git branch 2> /dev/null | sed -e '/^[^*]/d' -e...
Had an issue with Capistrano refusing to deploy a rails app to an Ubuntu server (with rvm) on AWS.