refactor: remove supabase auth

This commit is contained in:
Henry
2025-05-05 15:16:30 +01:00
parent 091fea6f38
commit b6daaa41de
42 changed files with 319 additions and 1591 deletions

View File

@@ -0,0 +1,20 @@
import { Stripe } from "stripe";
export const name = "stripe";
const stripeSecretKey = process.env.STRIPE_SECRET_KEY;
const createStripeClient = () => {
if (!stripeSecretKey) {
throw new Error("STRIPE_SECRET_KEY is not set");
}
const stripe = new Stripe(stripeSecretKey, {
apiVersion: "2025-04-30.basil",
httpClient: Stripe.createFetchHttpClient(),
});
return stripe;
};
export { createStripeClient };