feat: add clerk auth support with convex (#548)

This commit is contained in:
Aman Varshney
2025-08-29 00:21:08 +05:30
committed by GitHub
parent 8d48ae0359
commit 54bcdf1cbc
153 changed files with 1954 additions and 771 deletions

View File

@@ -12,6 +12,7 @@ import {
AddonsSchema,
type API,
APISchema,
AuthSchema,
type Backend,
BackendSchema,
type BetterTStackConfig,
@@ -78,7 +79,7 @@ export const router = t.router({
.describe("Show detailed result information"),
database: DatabaseSchema.optional(),
orm: ORMSchema.optional(),
auth: z.boolean().optional(),
auth: AuthSchema.optional(),
frontend: z.array(FrontendSchema).optional(),
addons: z.array(AddonsSchema).optional(),
examples: z.array(ExamplesSchema).optional(),
@@ -202,7 +203,7 @@ export function createBtsCli() {
* backend: "hono",
* database: "sqlite",
* orm: "drizzle",
* auth: true,
* auth: "better-auth",
* addons: ["biome", "turborepo"],
* packageManager: "bun",
* install: false,