#Lucas974

1 messages · Page 1 of 1 (latest)

vapid skyBOT
robust sentinel
random ferry
#

thank's

#

We re agree, the stripe cli is not to use in prod?

robust sentinel
#

That's right - the stripe cli + stripe listen command is more of a tool to use while testing.

random ferry
#

ok

#

is there a way to use a shell script to record this email address in a mongodb database?

#

instead of using node ... or smething else

#

like a shell script using curl... or the stripe cli itself perhaps ?

robust sentinel
#

Personally I wouldn't recommend doing that - I don't think you'd be able to do signature verification with a shell script

random ferry
#

I was looking for a KISS stack but yes you re certainly right

#

Can I ask you for an advice?

robust sentinel
#

Feel free to ask!

random ferry
#

I wish to create a simple saas, with the following features:

  • passwordless
  • oneshot payment
  • provide invoice for client

Knowing a bit of javascript. What do you advice me to create the backend keeping things "simple as possible" ? I'm not talking you about the design or the frontend part, just the logic part.

robust sentinel
#

Really the first question is how do you want to be collecting payment

random ferry
#

using Stripe

robust sentinel
#

and depending on what you choose there, that'll influence the rest of your logic (as an example, with Checkout you don't need to be creating Subscriptions/Invoices directly)

random ferry
#

I just need this:

  • oneshot payment
  • provide invoice for client

Clients, will connect to the website after payment using a magic link to download the digital product.

#

And auth: passwordless

#

Knowing these things... no way to advice me about the backend and the stripe feature or option I need?

robust sentinel
#

That's why I linked you to the accept a payment docs - that's what I'd recommed as the starting part for one-short payment and providing an invoice

#

There's multiple ways of doing this, so it's best for you to read through your options and pick which one will work best for you and your integration

#

For auth I don't have any specific recommendations

random ferry
#

ok

#

but going on express JS, this is something still relevant for you?