class Rails::Generators::CredentialsGenerator
def credentials_template
def credentials_template <<~YAML # aws: # access_key_id: 123 # secret_access_key: 345 # Used as the base secret for all MessageVerifiers in Rails, including the one protecting cookies. secret_key_base: #{SecureRandom.hex(64)} YAML end