27 lines
256 KiB
Markdown
27 lines
256 KiB
Markdown
# How to Set Up Stripe for Product Management
|
|
|
|
In this guide, we'll walk you through setting up Stripe to manage your products. We'll cover installing the Stripe CLI, creating products, configuring product fixtures, and switching between test and live modes.
|
|
|
|
[](https://youtu.be/jUsVcpAc7nE)
|
|
|
|
|
|
## Setting Up the Stripe CLI
|
|
|
|
First, we need to install the Stripe CLI. This tool allows you to manage your Stripe account directly from the command line.
|
|
|
|
1. **Install the Stripe CLI**
|
|
- Run the following command to install the Stripe CLI using Brew:
|
|
```bash
|
|
brew install stripe/stripe-cli/stripe
|
|
```
|
|

|
|
|
|
2. **Log In to Stripe**
|
|
- After installation, log in to Stripe by running:
|
|
```bash
|
|
stripe login
|
|
```
|
|
- This command will generate a page for you to authenticate in your browser.
|
|

|
|
- Allow access to complete the login process.
|
|
 |