Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the spree.rb.tt stripe configuration instructions for SolidusStripe v5+ #5505

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Stripe config instructions in spree.rb initializer template
Specify they're for version >= 5.

Co-Authored-By: Alberto Vena <[email protected]>
  • Loading branch information
2 people authored and elia committed Dec 18, 2023
commit 00df613ea7216fcdb0347a019cfff88b38c1fc4d
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ Spree.config do |config|
# Custom logo for the admin
# config.admin_interface_logo = "logo/solidus.svg"

# Gateway credentials can be configured statically here and referenced from
# Payment gateway credentials can be configured statically here and referenced from
# the admin. They can also be fully configured from the admin.
#
# Please note that you need to use the solidus_stripe gem to have
# Stripe working: https://github.com/solidusio-contrib/solidus_stripe
# Please note that the example below requires the `solidus_stripe` ~> 5.0 gem
# in order to work properly (see https://github.com/solidusio-contrib/solidus_stripe).
#
# config.static_model_preferences.add(
# Spree::PaymentMethod::StripeCreditCard,
# 'stripe_env_credentials',
# secret_key: ENV['STRIPE_SECRET_KEY'],
# publishable_key: ENV['STRIPE_PUBLISHABLE_KEY'],
# server: Rails.env.production? ? 'production' : 'test',
# test_mode: !Rails.env.production?
# 'SolidusStripe::PaymentMethod',
# 'solidus_stripe_env_credentials',
# api_key: ENV.fetch('SOLIDUS_STRIPE_API_KEY'),
# publishable_key: ENV.fetch('SOLIDUS_STRIPE_PUBLISHABLE_KEY'),
# test_mode: ENV.fetch('SOLIDUS_STRIPE_API_KEY').start_with?('sk_test_'),
# webhook_endpoint_signing_secret: ENV.fetch('SOLIDUS_STRIPE_WEBHOOK_SIGNING_SECRET')
# )
end

Expand Down