Modern Front-End Development for Rails: Adding Interactivity with Turbo Frames (page 22)
This mentions you can login to the seed data with the user areader@example.com
and the password awesome.
. This does not appear to be a valid account. The user record with this email exists in the users table, but I had to User.find_by(email: 'areader@example.com').update(password: 'awesome.')
to get this login to work