Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions template-tanstack-start-clerk/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@ node_modules
.cache
.vercel
.output
.vinxi
.nitro
.output
.tanstack

/build/
/api/
/server/build
/public/build
.vinxi

# Sentry Config File
.env.sentry-build-plugin
Expand Down
2 changes: 1 addition & 1 deletion template-tanstack-start-clerk/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TanStack Start + Clerk + Convex

Follow https://docs.convex.dev/auth/clerk until you have
CLERK_PUBLISHABLE_KEY, CLERK_SECRET_KEY, and CLERK_JWT_ISSUER_DOMAIN all in the .env file and the appropriate CLerk domain in convex/auth.config.ts.
`CLERK_PUBLISHABLE_KEY` and `CLERK_SECRET_KEY` in the .env file and the appropriate Clerk issuer domain in convex/auth.config.ts.

Then run `npx convex dev`.
2 changes: 1 addition & 1 deletion template-tanstack-start-clerk/convex/auth.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
// and configure CLERK_JWT_ISSUER_DOMAIN on the Convex Dashboard
// See https://docs.convex.dev/auth/clerk#configuring-dev-and-prod-instances
// Should look similar to 'https://main-swine-30.clerk.accounts.dev'.
domain: process.env.VITE_CLERK_FRONTEND_API_URL,
domain: process.env.CLERK_JWT_ISSUER_DOMAIN,
applicationID: 'convex',
},
],
Expand Down
82 changes: 41 additions & 41 deletions template-tanstack-start-clerk/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions template-tanstack-start-clerk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,29 @@
"seed": "npx convex import --table tasks sampleData.jsonl"
},
"dependencies": {
"@clerk/tanstack-react-start": "0.18.0",
"@clerk/tanstack-react-start": "0.24.0",
"@convex-dev/react-query": "0.0.0-alpha.11",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-router-devtools": "^1.121.34",
"@tanstack/react-router-with-query": "^1.121.34",
"@tanstack/react-router": "^1.121.34",
"@tanstack/react-start": "^1.121.38",
"@tanstack/react-query": "^5.89.0",
"@tanstack/react-router-devtools": "^1.131.44",
"@tanstack/react-router-with-query": "^1.130.17",
"@tanstack/react-router": "^1.131.44",
"@tanstack/react-start": "^1.131.44",
"convex": "^1.27.0",
"react-dom": "^19.1.0",
"react": "^19.1.0",
"react-dom": "^19.1.1",
"react": "^19.1.1",
"redaxios": "^0.5.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^24.0.4",
"@types/react-dom": "^19.1.6",
"@types/react": "^19.1.8",
"@tailwindcss/vite": "^4.1.13",
"@types/node": "^24.5.1",
"@types/react-dom": "^19.1.9",
"@types/react": "^19.1.13",
"autoprefixer": "^10.4.21",
"concurrently": "~9.2.0",
"prettier": "^3.6.1",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"concurrently": "~9.2.1",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"vite-tsconfig-paths": "^5.1.4",
"vite": "^6.3.5"
"vite": "^7.1.5"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const Route = createFileRoute('/_authed/posts/$postId')({
component: PostComponent,
})

export function PostErrorComponent({ error }: ErrorComponentProps) {
function PostErrorComponent({ error }: ErrorComponentProps) {
return <ErrorComponent error={error} />
}

Expand Down
3 changes: 0 additions & 3 deletions template-tanstack-start/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@ node_modules
.cache
.vercel
.output
.vinxi
.nitro
.output
.tanstack

/build/
/api/
/server/build
/public/build
.vinxi

# Sentry Config File
.env.sentry-build-plugin
Expand Down
78 changes: 39 additions & 39 deletions template-tanstack-start/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading