Skip to content

Instantly share code, notes, and snippets.

View Diana20920's full-sized avatar
:octocat:
Focusing

Diana Espinoza Diana20920

:octocat:
Focusing
View GitHub Profile
@Pragmaticpraxis37
Pragmaticpraxis37 / rails_development_checklist.md
Last active August 25, 2021 20:13
Rails Development Checklist

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