This is a gatsby theme for anyone that has a stripe account that wants to quickly spin up an online storefront to sell products from.
Install the theme with yarn or npm
yarn add @dayhaysoos/gatsby-theme-stripe-storefront
npm install @dayhaysoos/gatsby-theme-stripe-storefront
Include it in your gatsby-config.js file at the root of your site:
module.exports = {
plugins: [
{
resolve: '@dayhaysoos/gatsby-theme-stripe-storefront',
options: {
stripeSecretKey: process.env.STRIPE_API_SECRET,
stripePublicKey: process.env.STRIPE_API_PUBLIC
}
}
]
};
Add more to readme
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.