method

credentials_template

credentials_template()
private

No documentation available.

# File railties/lib/rails/generators/rails/credentials/credentials_generator.rb, line 44
        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