Hello, I'm creating a store with solidus using the...
# support
u
Hello, I'm creating a store with solidus using the starter front-end and I want to use Stripe as a payment method. I tried using solidus_stripe gem but it didn't work and I followed this tutorial to try the implementation: https://github.com/solidusio/solidus_stripe, I followed the readme of master branch. I've tried using the stripe-ruby gem as well, but I'm confused on where to put the additional code using the gem so that the payment and order flow continues to work correctly. I also read this guide for customizing payment methods in an attempt to add the stripe, using the stripe-ruby gem: https://guides.solidus.io/advanced-solidus/payments-and-refunds#customizing-the-payment-system
k
Hello, at the moment SolidusStripe only supports the development version of Solidus and the starter. We are going to release a new version in a couple of days with full support. If you can’t wait, we might still be able to help you using it with the current version, there are some changes to make on your application. Let me know!
u
Thanks for the reply! I'm just starting development in this store, it would be fine to wait a couple of days. Is there a way to run the development branch of the starter frontend and solidus-stripe gem? If so, i can continue my tests on a new project while i wait for the next release.
k
Yes, if you use Solidus from GitHub (
master
branch) instead of RubyGems, it will pick the latest development branch on SolidusStarterFrontend. It should be:
Copy code
rails new my_store
cd my_store
bundle add solidus --github 'solidusio/solidus'
bin/rails g solidus:install
Let me know if this works!
u
It worked! thanks
🎉 1