Skip to content

Instantly share code, notes, and snippets.

@chand
chand / deployrailstoheroku.md
Last active November 5, 2023 18:20
Deploy to Heroku from Ruby on Rails

Deploy to Heroku from Ruby on Rails

Deploying a new Ruby on Rails App to Heroku

Note: Your Ruby on Rails app must be set up in PostgreSQL, if it isn't, you will have to create a new Rails app in postgreSQL

In Heroku

  1. Create a free heroku account if you don't have one already
@chand
chand / railssetupinstructions.md
Last active August 26, 2017 15:29
Ruby on Rails New App Setup Instructions

Ruby on Rails New App Setup Instructions

New App Setup

This will be setup in postgreSQL

In Command line

rails new my_great_app -T -d postgresql --skip-turbolinks
cd my_great_app
git init (if this isn't already git)