Stripe Extension
A LocalStack extension that provides a mocked version of Stripe as a service
less than a minute
The Stripe Extension provides a mocked version of Stripe as a service, via localstripe
, a stateful Stripe server implementation in Python. The extension is purely for testing purposes, and is not intended for production use. The LocalStack Stripe Extension does not modify localstripe
in any way.
Note
This Extension is experimental and still under active development. Please report any issues or feature requests on our GitHub repository.Installation
To install the Stripe Extension, run the following command:
$ localstack extensions install "git+https://github.com/localstack/localstack-extensions/#egg=localstack-extensions-stripe&subdirectory=stripe"
Usage
After installation, you can query Strip either through localhost:4566/stripe
or stripe.localhost.localstack.cloud:4566
.
$ curl stripe.localhost.localstack.cloud:4566/v1/customers \
-u sk_test_12345: \
-d description="Customer data for Alice"
Last modified April 14, 2023: refactor extensions doc to references (#569) (b7afb6f1a)