https://www.railstutorial.org/book/toy_app
I am confused on this part
2.2 User Resource on the book
I need help on this I cannot navigate to users or tour users
Using this command: URL Action Purpose /users index page to list all users /users/1 show page to show user with id 1 /users/new new page to make a new user /users/1/edit edit page to edit user with id 1
The error says: The page you were looking for doesn't exist.
You may have mistyped the address or the page may have moved.
If you are the application owner check the logs for more information.
I am not sure what is wrong with this did I miss something before this step to navigate users
Rails.application.routes.draw do resources :users # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html root ‘application#hello’ end
—-thats on my routes.rb—-
—-below is on my rakefile—-
-# Add your own tasks in files placed in lib/tasks ending in .rake, -# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require_relative ‘config/application’
Rails.application.load_tasks