Can't use @better-auth/cli when exporting a auth function
I am using Better Auth across my api (hono + cloudflare workers) and fronted (nextjs + vercel), so far so good however when i want to run the
bunx @better-auth/cli generate
i get the following error:
my auth config is setup like so:
Since we need to pass in env's from the cloudflare context, we need to create the auth client rather than just existing.
my repo: https://github.com/jacobsamo/BuzzTrip
branch: https://github.com/jacobsamo/BuzzTrip/tree/feat/migrate-to-better-auth
code causing the problem: https://github.com/jacobsamo/BuzzTrip/blob/feat/migrate-to-better-auth/apps/api/src/common/auth.ts
run from: https://github.com/jacobsamo/BuzzTrip/blob/feat/migrate-to-better-auth/packages/db/package.jsonGitHub
GitHub - jacobsamo/BuzzTrip: Plan the trip you've always dreamed of
Plan the trip you've always dreamed of. Contribute to jacobsamo/BuzzTrip development by creating an account on GitHub.
GitHub
GitHub - jacobsamo/BuzzTrip at feat/migrate-to-better-auth
Plan the trip you've always dreamed of. Contribute to jacobsamo/BuzzTrip development by creating an account on GitHub.
GitHub
BuzzTrip/apps/api/src/common/auth.ts at feat/migrate-to-better-auth...
Plan the trip you've always dreamed of. Contribute to jacobsamo/BuzzTrip development by creating an account on GitHub.
GitHub
BuzzTrip/packages/db/package.json at feat/migrate-to-better-auth · ...
Plan the trip you've always dreamed of. Contribute to jacobsamo/BuzzTrip development by creating an account on GitHub.
Solution:Jump to solution
you can call
```ts
import { getMigrations } from "better-auth/db";
const { runMigrations } = await getMigrtions(auth.options);...
5 Replies
you can't run the CLI in this setup. You sohuld call run migration programatically. Or I think cf recently added the ability to acess env without handler context.
Yeah okay, didn’t think of that, so have to call the function programmatically with the passed items and run the migration? What would something like this work?
I am using bun
Solution
you can call
Oh cool, thank you for the example that’s very helpful
When running similiar code:
i end with this error:
this is my
createAuth
function: