I have views/application/index.html.erb
and in the routes file I have:
root :to => "application#index"
And my ApplicationController looks like this:
class ApplicationController < ActionController::Base protect_from_forgery def index
but when i'm on localhost: 3000, it still says that "you just started the rails application project"
I also deleted public / index.html
source share