stripe/stripe-cli — an open-source project — sits at 2.1k GitHub stars. A command-line tool for Stripe
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
The CLI is also available as a Docker image: stripe/stripe-cli.
docker run --rm -it stripe/stripe-cli version
stripe version x.y.z (beta)
Password Store Setup with Docker
While test mode doesn’t require password store, you will need to set it up if you wish to perform live mode requests.
You can also make live mode requests on a per command basis by attaching the --api-key flag.
Create entrypoint.sh
#!/bin/sh
if ! [ -f ~/.gnupg/trustdb.gpg ] ; then
chmod 700 ~/.gnupg/
gpg --quick-generate-key stripe-live # This will generate a gpg key called "stripe-live"
fi
if ! [ -f ~/.password-store/.gpg-id ] ; then
pass init stripe-live # This will initialize a password store record named "stripe-live", using the gpg key above
pass insert stripe-live # This will insert value for the password store "stripe-live", which we will put Stripe Live Secret Key in
fi
string="$@"
liveflag="--live"
if [ -z "${string##*$liveflag*}" ] ;then
OPTS="--api-key $(pass show stripe-live)" # This will use the content of the password store "stripe-live" which was inserted in line 8
fi
#pass insert stripe-live
/bin/stripe $@ $OPTS
Create a docker file Dockerfile-cli
FROM stripe/stripe-cli:vx.x.x
RUN apk add pass gpg-agent
COPY ./entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]
Build the docker image
docker build -t stripe-cli -f Dockerfile-cli .
Run the docker image with password volumes, replacing $command with the appropraite Stripe CLI command (i.e customers list)
TopGit's last sync did not record any GitHub topics for stripe/stripe-cli. GitHub topics appear in the right sidebar of a repository page; that's the authoritative place to check.
How active is development on stripe/stripe-cli?
The most recent commit recorded on stripe/stripe-cli was 9 days ago, based on the GitHub push timestamp. The repository has 501 forks — one of the better signals of community interest.
How many stars does stripe/stripe-cli have?
stripe/stripe-cli has 2.1k GitHub stars — refresh the page for the live number, or check github.com/stripe/stripe-cli. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What is stripe/stripe-cli?
stripe/stripe-cli (stripe/stripe-cli) is a Go project on GitHub. From the project's own README: A command-line tool for Stripe
What language is stripe/stripe-cli written in?
stripe/stripe-cli is written primarily in Go. GitHub's language field is based on the largest share of bytes in the default branch.
Read full README in the tab above.
Is stripe-cli worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of stripe-cli.