How can I get the multiple terminals view in the blog header image?
Stripe CLI
11–20 of 149 posts
Re: Stripe CLI
#12This is a great improvement! Last time I did a stripe integration it was definitely kind of a painful, disjointed experience.
Re: Stripe CLI
#13This looks really good. It sounds like you won't have to configure tools like ngrok anymore to accept webhooks on a local connection. That's a huge win because with the free version of ngrok your subdomain would change a lot which means having to goto the Stripe dashboard to update it there. It was pretty tedious.
This is a free equivalent to ngrok and it only uses SSH - https://serveo.net/ - and it accepts custom subdomains. I spin it up for each project like this with $DOMAIN and $PORT being defined/fixed for each project and the connection kept open permanently using autossh: ssh -R $DOMAIN:80:localhost:$PORT serveo.net There are API endpoints for creating, listing and deleting webhooks in Stripe now too - my test suites an…
I was going to test the waters with https://www.dollardeploys.com/ (not functional yet), wasn't sure how to differentiate it between ngrok/serveo.
Re: Stripe CLI
#14Earlier quoted context omitted.
This is a free equivalent to ngrok and it only uses SSH - https://serveo.net/ - and it accepts custom subdomains. I spin it up for each project like this with $DOMAIN and $PORT being defined/fixed for each project and the connection kept open permanently using autossh: ssh -R $DOMAIN:80:localhost:$PORT serveo.net There are API endpoints for creating, listing and deleting webhooks in Stripe now too - my test suites an…
Do you think there would be demand for `serveo` but instead of running your project locally, you point to a Dockerfile and the entire container + all of its dependencies are ran remotely (with wildcard subdomain SSL included)? I was going to test the waters with https://www.dollardeploys.com/ (not functional yet), wasn't sure how to differentiate it between ngrok/serveo.
https://devcenter.heroku.com/categories/deploying-with-docke...
Re: Stripe CLI
#15Re: Stripe CLI
#16I filled a bug task on your github page, but you've got a deadlink for the linux install in your readme. Really excited to get to use these tools. Already integrated with stripe for my projects, but this will allow for more cool testing. Thank you stripe team!
Re: Stripe CLI
#17that's nice! :) I have found that quite often Stripe's UI would just through errors when trying to open some customers, failed payments or subscriptions. Couldn't really pinpoint why it happens, tried different browsers, disabling extensions and so on. Hopefully CLI wil work :)
Re: Stripe CLI
#18Re: Stripe CLI
#19I filled a bug task on your github page, but you've got a deadlink for the linux install in your readme. Really excited to get to use these tools. Already integrated with stripe for my projects, but this will allow for more cool testing. Thank you stripe team!
Kenneth from Stripe here. We just committed a fix. Thanks for the heads up! https://github.com/stripe/stripe-cli/commit/edaa05a505e935a5...