Sha256: b42b907373bdf836219dd83da6d2d54d640c327c9306b4d7bd7ad552948cd45e
Contents?: true
Size: 1.37 KB
Versions: 18
Compression:
Stored size: 1.37 KB
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" # Set site name config.site_name = nil # 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.tags = ["Customize", "These", "Options", "In", "config/initializers/fuel.rb"] config.helpers = ["ApplicationHelper", #"another_helper", ] config.featured_image_settings = { styles: { thumb: "100x100#", medium: "300x300#" } } config.avatar_settings = { styles: { thumb: "100x100#", medium: "300x300#" } } # logo should be square and at least 58px x 58px # add your logo to app/assets/images # and change config.logo to "your-image-name.png" config.logo = "fuel/logo.svg" # config.facebook_app_id = "318506165696214" # 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
18 entries across 18 versions & 1 rubygems