Sha256: 8c66c8f95606aecafb9217c31e68b90eebea7c012984356ba3d114f9e0f23c79

Contents?: true

Size: 1.56 KB

Versions: 18

Compression:

Stored size: 1.56 KB

Contents

# Configure Solidus Preferences
# See http://docs.solidus.io/Spree/AppConfiguration.html for details

Spree.config do |config|
  # Without this preferences are loaded and persisted to the database. This
  # changes them to be stored in memory.
  # This will be the default in a future version.
  config.use_static_preferences!

  # Core:

  # Default currency for new sites
  config.currency = "CAD"

  # from address for transactional emails
  config.mails_from = "store@example.com"

  # Uncomment to stop tracking inventory levels in the application
  # config.track_inventory_levels = false

  # When true, product caches are only invalidated when they come in or out of
  # stock. Default is to invalidate cache on any inventory changes.
  # config.binary_inventory_cache = true


  # Frontend:

  # Custom logo for the frontend
  # config.logo = "logo/solidus_logo.png"

  # Template to use when rendering layout
  # config.layout = "spree/layouts/spree_application"


  # Admin:

  # Custom logo for the admin
  # config.admin_interface_logo = "logo/solidus_logo.png"

  # Gateway credentials can be configured statically here and referenced from
  # the admin. They can also be fully configured from the admin.
  #
  # config.static_model_preferences.add(
  #   Spree::Gateway::StripeGateway,
  #   'stripe_env_credentials',
  #   secret_key: ENV['STRIPE_SECRET_KEY'],
  #   publishable_key: ENV['STRIPE_PUBLISHABLE_KEY'],
  #   server: Rails.env.production? ? 'production' : 'test',
  #   test: !Rails.env.production?
  # )
end

Spree.user_class = "Spree::User" # "Spree::LegacyUser"

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
o2webappizer-0.2.6 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.5 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.4 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.3 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.2 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.1 templates/config/initializers_tt/spree.rb
o2webappizer-0.2.0 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.15 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.14 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.13 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.12 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.11 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.10 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.9 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.8 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.7 templates/config/initializers_tt/spree.rb
o2webappizer-0.1.6 templates/config/initializers/spree.rb
o2webappizer-0.1.5 templates/config/initializers/spree.rb