# Installation and Configuration

TODO

# Design modification

TODO

# Paypal integration

TODO

# Stripe integration

TIP

This part is coming from the official strip documentation.

  1. Add solidus_stripe gem in Gemfile. Your server should be stopped before bundle it.
gem 'solidus_stripe'
  1. Bundle it with local bundle command. When using the main one installed with ruby, it can stuck.
./bin/bundle install
  1. Migrate the database by using the generate interface.
./bin/bundle exec rails g solidus_stripe:install
  1. Retart the server locally.
./bin/rails server
  1. Configure your test environment. publishable key and secret key can be found on stripe API keys page (opens new window). These two keys can now be added in /admin/payment_methods (opens new window) path.

  2. You can now test it. To see what happens on the stripe logs (opens new window) and stripe events (opens new window) pages.

# Resources and References

# References and Resources