mihaaai
mihaaai
Explore posts from servers
BABetter Auth
Created by mihaaai on 3/30/2025 in #bug-reports
Can't generate migrations using D1 on Cloudflare Workers
The error happens just when trying to invoke the URL for the migration set within the app, returning a 500 and the error message on the server-side. auth() is using the getCloudflareContext() function from opennext to get the runtime environment to reference D1 in Kysely config.
export const auth = () =>
betterAuth({
database: {
db: new Kysely({
dialect: new D1Dialect({
database: getCloudflareContext().env.AUTH_DB,
}),
}),
type: "sqlite",
}
}
)
export const auth = () =>
betterAuth({
database: {
db: new Kysely({
dialect: new D1Dialect({
database: getCloudflareContext().env.AUTH_DB,
}),
}),
type: "sqlite",
}
}
)
5 replies
CDCloudflare Developers
Created by mihaaai on 1/27/2025 in #workers-help
Is it possible to use Cap'n Proto, to deserialize payloads instead of JSON, in Workers requests?
Awesome, this fixed problems with the older version! Thanks!
4 replies