Sha256: 53a7dfd735f63cd76733359bfa101e6e9cc0ba52e54cecb3a32313ac53af50de

Contents?: true

Size: 1.97 KB

Versions: 1

Compression:

Stored size: 1.97 KB

Contents

PushType.setup do |config|

  # By default all node types can be placed at the root of the
  # content tree. Alternatively, set an array of node type symbols
  # to whiltelist acceptable root nodes.
  config.root_nodes = :all

  # Set the slug of the node that the `NodesFrontEndContoller` will
  # render when visting the root URL of the site (the homepage).
  # This setting can be overridden in config/routes.rb.
  config.home_slug = 'home'

  # Set an array of node type symbols which will not be exposed to
  # the `NodesFrontEndContoller`. These nodes will not be accessible
  # through their permalink.
  config.unexposed_nodes = []

  # Set an array of taxonomy type symbols which will not be exposed
  # to the `TaxonomiesFrontEndController`. These taxonomies will not
  # be accessible through their permalink.
  config.unexposed_taxonomies = []

  # Media styles allow you to predefine a collection of geometry
  # strings for resizing images on the fly with the `Asset#media`
  # method. Example: `image.media(:large)`
  config.media_styles = {
    large:    '1024x1024>',
    medium:   '512x512>',
    small:    '256x256>'
  }

  # Configure the email address to be used as the "from" address
  # for PushType's build in mailers.
  config.mailer_sender = 'pushtype@example.com'

  # PushType uses Dragonfly for managing uploaded images/assets.
  # Dragonfly datastore configuration
  config.dragonfly_datastore = :file
  config.dragonfly_datastore_options = {
    root_path:    Rails.root.join('public/system/dragonfly', Rails.env),
    server_root:  Rails.root.join('public')
  }
  
  # For S3 storage, remember to add to Gemfile:
  # gem 'dragonfly-s3_data_store'
  # config.dragonfly_datastore = :s3
  # config.dragonfly_datastore_options = {
  #   bucket_name:        ENV['S3_BUCKET'],
  #   access_key_id:      ENV['S3_ACCESS_KEY_ID'],
  #   secret_access_key:  ENV['SECRET_ACCESS_KEY_ID']
  # }

  # config.dragonfly_secret = '1d6edfb00f00cee6c887708948206f384d16f8dea925e6bd3aba241b0aa819ab'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
push_type_core-0.5.3 test/dummy/tmp/generators/config/initializers/push_type.rb