Rails Application/Project structure and folder layout specification
File/Folder Purpose app/ Contains the controllers, models, views, helpers, mailers and assets for your application. You’ll focus on this folder for the remainder of this guide. bin/ Contains the rails script that starts your app and can contain other scripts you use to deploy or run your application. config/ Configure your application’s runtime rules, routes, database, and more. This is covered in more detail in Configuring Rails Applications config.ru Rack configuration for Rack based servers used to start the application. db/ Contains your current database schema, as well as the database migrations. Gemfile Gemfile.lock These files allow you to specify […]
Read more