Complete the code to describe the purpose of the config folder in Rails.
The config folder in a Rails app is mainly used to store [1] files.
The config folder holds configuration files that set up how the Rails app behaves.
Complete the sentence about a common file inside the config folder.
The [1].yml file inside config is used to store environment-specific settings.The secrets.yml file stores sensitive information like API keys for different environments.
Fix the error in this statement about config/routes.rb.
The config/routes.rb file is used to [1] URL routes.The routes.rb file defines URL routes, it does not manage the database schema.
Fill both blanks to explain config/environments files.
Files in config/environments like [1].rb and [2].rb set settings for different app environments.
The development.rb and production.rb files hold settings specific to those environments.
Fill all three blanks to complete the config folder role description.
The config folder contains [1] files, [2] files, and [3] files that control app behavior.
Initializer files set up code on start, environment files set settings per environment, and routing files define URL paths.