Rails file structure explained
One of the first things you need to learn as you learn Ruby on Rails is learning where things go in its file structure. In my case, it took me too long to connect the dots, but once I did, I no longer struggled with placing things. In the long run, it even helps you whenever a new Rails version comes out as the file structures are very similar among versions. So, let’s look at all the folders. Here’s the file structure:
. ├── app │ ├── assets │ │ ├── config │ │ ├── images │ │ ├── javascripts │ │ │ └── channels │ ...