An open API service indexing awesome lists of open source software.

https://github.com/niklas-schmidt-dev/shipable-template-dashboard-convex-clerk

A Convex-backed operations dashboard with Clerk sign-in, user controls, and authenticated realtime queries.
https://github.com/niklas-schmidt-dev/shipable-template-dashboard-convex-clerk

business dashboard-convex-clerk shipable shipable-template

Last synced: 29 days ago
JSON representation

A Convex-backed operations dashboard with Clerk sign-in, user controls, and authenticated realtime queries.

Awesome Lists containing this project

README

          

# Convex + Clerk Dashboard

This template is an authenticated operations dashboard built with React, Convex, and Clerk.

## Local Development

```bash
npm install
npx convex dev
```

Create a Clerk application, enable the Convex integration in the Clerk Dashboard, and copy the Clerk publishable key into `.env.local`:

```bash
VITE_CLERK_PUBLISHABLE_KEY=pk_test_...
```

Set the Clerk issuer domain on the Convex deployment:

```bash
npx convex env set CLERK_JWT_ISSUER_DOMAIN https://your-clerk-frontend-api-url.clerk.accounts.dev
```

Then run:

```bash
npm run dev
```