Deploying a Rails Webapp on GAE should be a piece of cake right? Due to lack of good documentation, it is not that easy. I had to dig around to find the versions of the software installed for Ruby Stack One-Click Deploy.
Here is some useful information to access installed software components.
Apache web server: Configuration directory: /etc/apache2 Default website directory: /var/www Command to start Apache web server: sudo service apache2 start Command to stop Apache web server: sudo service apache2 stop Passenger: Help command: passenger --help Install directory: /usr/local/rvm/gems/ruby-2.1.1/gems/passenger-4.0.48 MySQL: Command to access MySQL: mysql -u root -p Command to start MySQL service: sudo service mysql start Command to stop MySQL service: sudo service mysql stop RVM, Ruby and Rails: RVM Help command: rvm Rails help command: rails -h RVM install directory: /usr/local/rvm Ruby install directory: /usr/local/rvm/src/ruby-2.1.1 Rails install directory: /usr/local/rvm/gems/ruby-2.1.1/gems/rails-4.1.4 Git: Help command: git --help