Concept Flow - Route definition in routes.rb
Start routes.rb file
Define route method (get/post/etc)
Specify URL path
Map to controller#action
Rails adds route to routing table
Request matches route -> controller action called
Response sent back to browser
This flow shows how Rails reads route definitions, adds them to its routing table, and uses them to direct web requests to the right controller actions.