Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 851 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 851 Bytes

Rails Scaffold

Stories

Users can CRUD people

  • Scaffold a person with the following attributes:
    • first_name (string)
    • last_name (string)
    • date_of_birth (date)
  • Run migrations with rake db:migrate
  • Run the server and visit http://localhost:3000/people
  • Inspect the db/schema.rb
  • Inspect the config/routes.rb
  • Run rake routes

Users can CRUD organizations

  • Scaffold an organization with the following attributes:
    • name (string)
    • number_of_employees (integer)
  • Run migrations with rake db:migrate
  • Visit http://localhost:3000/organizations
  • Inspect the db/schema.rb
  • Inspect the config/routes.rb
  • Run rake routes

To use this repo:

  • cd workspace
  • git clone [email protected]:gSchool/scaffold-playground.git
  • create your own repository
  • git remote set-url <your github url>