Sha256: e6c983145dd7a80b739b306d095871aa8002d0cffbae1089f27c8b6d20f42050
Contents?: true
Size: 984 Bytes
Versions: 17
Compression:
Stored size: 984 Bytes
Contents
# Customize Fuel Fuel.configure do |config| # Change the layout to render with the blog config.layout = "application" # Change title of blog config.blog_title = "Blog" # Change description of blog # config.blog_description = "A list of posts about a topic" # Change admin username config.username = "admin" # Change admin password config.password = "password" # Change number of posts to show per page on blog config.paginates_per = 5 config.helpers = ["ApplicationHelper", #"another_helper", ] config.featured_image_settings = { styles: { thumb: "100x100>", medium: "300x300>" } } config.logo = "fuel/logo.svg" # Add Disqus #config.disqus_name = 'your_disqus_name' # Add Twitter #config.twitter = true # AWS S3 SETTINGS config.aws_bucket = ENV['AWS_BUCKET'] config.aws_access_key = ENV["AWS_ACCESS_KEY"] config.aws_secret_access_key = ENV["AWS_SECRET_ACCESS_KEY"] end
Version data entries
17 entries across 17 versions & 1 rubygems