Skip to content

Instantly share code, notes, and snippets.

@gravesal
gravesal / rails_setup_notes.txt
Created December 2, 2015 22:30 — forked from stevecass/rails_setup_notes.txt
Starting a new rails app
rails new my_great_app -T -d postgresql --skip-turbolinks
cd my_great_app
git init
git add .
git commit -m "Initial commit. Rails boilerplate."
#Edit Gemfile. Uncomment the reference to bcrypt and remove the reference to coffee-rails.
bundle install
git add .