dD0K
dD0K
Explore posts from servers
BABetter Auth
Created by AryanXD on 3/1/2025 in #bug-reports
Social and email sign-in function are typed as never type
trouble-nvim
6 replies
BABetter Auth
Created by Troy on 3/5/2025 in #help
Polar not working
13 replies
BABetter Auth
Created by Troy on 3/5/2025 in #help
Polar not working
btw the polar docs for this are pretty decent
13 replies
BABetter Auth
Created by Troy on 3/5/2025 in #help
Polar not working
this is assuming you have the better auth catch all route under /api/auth/[...all]/route.ts
13 replies
BABetter Auth
Created by Troy on 3/5/2025 in #help
Polar not working
they're all listed in "url"/api/auth/subscriptions/list
13 replies
BABetter Auth
Created by dD0K on 3/3/2025 in #bug-reports
Stripe Plugin bug
it wasn't optional
7 replies
BABetter Auth
Created by dD0K on 3/3/2025 in #bug-reports
Stripe Plugin bug
yep that was it:
model Subscription {
id String @id
plan String
referenceId String
stripeCustomerId String
customer Customer @relation(fields: [stripeCustomerId], references: [stripeCustomerId])
stripeSubscriptionId String
status String
periodStart DateTime
periodEnd DateTime
cancelAtPeriodEnd Boolean
seats Int
trialStart DateTime?
trialEnd DateTime?

@@map("subscription")
}
model Subscription {
id String @id
plan String
referenceId String
stripeCustomerId String
customer Customer @relation(fields: [stripeCustomerId], references: [stripeCustomerId])
stripeSubscriptionId String
status String
periodStart DateTime
periodEnd DateTime
cancelAtPeriodEnd Boolean
seats Int
trialStart DateTime?
trialEnd DateTime?

@@map("subscription")
}
7 replies
BABetter Auth
Created by dD0K on 3/3/2025 in #bug-reports
Stripe Plugin bug
that sucks... I used the generate command from the docs so I didn't even set it up
7 replies
BABetter Auth
Created by Troy on 3/5/2025 in #help
Polar not working
you can just redirect to "url"/api/auth/checkout/"slug" if you have the item properly set it up in your auth.ts
13 replies
BABetter Auth
Created by anand248 on 3/5/2025 in #bug-reports
Performance of `auth.api.hasPermission` seem to be very slow
5 replies
BABetter Auth
Created by SyntaxErrorGeek on 2/17/2025 in #help
npx @better-auth/cli generate - Error: mongodb-adapter is not supported.
the docs are pretty good with all the tables you need
5 replies
BABetter Auth
Created by SyntaxErrorGeek on 2/17/2025 in #help
npx @better-auth/cli generate - Error: mongodb-adapter is not supported.
You may have to yes
5 replies
BABetter Auth
Created by AryanXD on 3/1/2025 in #bug-reports
Social and email sign-in function are typed as never type
I'm so sorry I can't help with ur issue, but what plugin do you use to show error in the bottom like that?
6 replies
BABetter Auth
Created by dD0K on 3/2/2025 in #help
Beta testing stripe plugin
if anyone else has this issue, for some reason my auth.ts file was looking for env variables in .env and not .env.local
21 replies
BABetter Auth
Created by Gaetan H on 3/2/2025 in #help
Migration Relation "subscription" does not exist
How catastrophic would it be if you tried generate instead of migrate
8 replies
BABetter Auth
Created by Gaetan H on 3/2/2025 in #help
Migration Relation "subscription" does not exist
I found with better auth the migration is sometimes weird
8 replies
BABetter Auth
Created by dD0K on 3/2/2025 in #help
Beta testing stripe plugin
import { betterAuth } from "better-auth";
import { prismaAdapter } from "better-auth/adapters/prisma";
import { PrismaClient } from "@prisma/client";

import { stripe } from "@better-auth/stripe";
import Stripe from "stripe";
const stripeClient = new Stripe(process.env.STRIPE_SECRET_KEY as string);

const prisma = new PrismaClient();
export const auth = betterAuth({
database: prismaAdapter(prisma, {
provider: "postgresql",
}),
socialProviders: {
github: {
clientId: process.env.AUTH_GITHUB_ID as string,
clientSecret: process.env.AUTH_GITHUB_SECRET as string,
},
google: {
clientId: process.env.GOOGLE_CLIENT_ID as string,
clientSecret: process.env.GOOGLE_CLIENT_SECRET as string,
},
},
plugins: [
stripe({
stripeClient,
stripeWebhookSecret: process.env.STRIPE_WEBHOOK_SECRET!,
createCustomerOnSignUp: true,
subscription: {
enabled: true,
plans: [
{
name: "basic",
priceId: "price_1QxY9oQeJndFgkfkUFjAEnH4",
},
],
},
}),
],
});
import { betterAuth } from "better-auth";
import { prismaAdapter } from "better-auth/adapters/prisma";
import { PrismaClient } from "@prisma/client";

import { stripe } from "@better-auth/stripe";
import Stripe from "stripe";
const stripeClient = new Stripe(process.env.STRIPE_SECRET_KEY as string);

const prisma = new PrismaClient();
export const auth = betterAuth({
database: prismaAdapter(prisma, {
provider: "postgresql",
}),
socialProviders: {
github: {
clientId: process.env.AUTH_GITHUB_ID as string,
clientSecret: process.env.AUTH_GITHUB_SECRET as string,
},
google: {
clientId: process.env.GOOGLE_CLIENT_ID as string,
clientSecret: process.env.GOOGLE_CLIENT_SECRET as string,
},
},
plugins: [
stripe({
stripeClient,
stripeWebhookSecret: process.env.STRIPE_WEBHOOK_SECRET!,
createCustomerOnSignUp: true,
subscription: {
enabled: true,
plans: [
{
name: "basic",
priceId: "price_1QxY9oQeJndFgkfkUFjAEnH4",
},
],
},
}),
],
});
all the env variables I'm using here exist
21 replies
BABetter Auth
Created by dD0K on 3/2/2025 in #help
Beta testing stripe plugin
^
21 replies
BABetter Auth
Created by dD0K on 3/2/2025 in #help
Beta testing stripe plugin
Um, yeah, I have stripe webhook secret
21 replies
BABetter Auth
Created by dD0K on 3/2/2025 in #help
Beta testing stripe plugin
In my .env.local
21 replies