Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the default home page in Rails?

It says "Yay! You're on Rails!"

I can't find the word yay anywhere in the project folder. I am surely missing something.

like image 734
temporary_user_name Avatar asked Oct 25 '25 02:10

temporary_user_name


1 Answers

It's default page of rails > 5.0 version.

rails auto install railties gem while creating project and this gem contain static template of welcome page.

you can find page under ../gems/railties-5.1.6/lib/rails/templates/rails/welcome/index.html.erb

you can find more detail Here

like image 157
Hardik Upadhyay Avatar answered Oct 26 '25 17:10

Hardik Upadhyay