Skip to content

Instantly share code, notes, and snippets.

View javolpe's full-sized avatar

JVolpe javolpe

  • Denver
View GitHub Profile

Rails Development Checklist

Warning: This checklist uses a happy path model, meaning it does not rely on TDD to build up the rails app. Additionally, it uses names of routes, models, controllers, and views in code snippets, so make sure to replace those names with the names of those things in your project. Most references are from

https://backend.turing.io/module2/misc/blogger
  1. Create Rails Application
  • From the command line, start a new rails app. For example,
    rails new blogger -T -d="postgresql" --skip-spring --skip-turbolinks