Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/achen318/medibear
HackMIT 2024: An anonymous forum-based application between patients and doctors.
https://github.com/achen318/medibear
clerk convex react tailwind
Last synced: 26 days ago
JSON representation
HackMIT 2024: An anonymous forum-based application between patients and doctors.
- Host: GitHub
- URL: https://github.com/achen318/medibear
- Owner: achen318
- Created: 2024-09-14T18:39:07.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T14:50:14.000Z (about 2 months ago)
- Last Synced: 2024-09-30T09:42:00.697Z (about 1 month ago)
- Topics: clerk, convex, react, tailwind
- Language: TypeScript
- Homepage:
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Convex + TypeScript + ESLint + Vite + React + Clerk + Tailwind + shadcn/ui
This template provides a minimal setup to get Convex working, with TypeScript,
ESLint and React using [Vite](https://vitejs.dev/). It uses [Clerk](https://clerk.dev/) for user authentication.Start by editing `convex/myFunctions.ts` and interact with your React app.
See Convex docs at https://docs.convex.dev/home
## Setting up
```
npm create convex@latest -t react-vite-clerk-shadcn
```Then:
1. Follow steps 1 to 3 in the [Clerk onboarding guide](https://docs.convex.dev/auth/clerk#get-started)
2. Paste the Issuer URL as `CLERK_JWT_ISSUER_DOMAIN` to your dev deployment environment variable settings on the Convex dashboard (see [docs](https://docs.convex.dev/auth/clerk#configuring-dev-and-prod-instances))
3. Paste your publishable key as `VITE_CLERK_PUBLISHABLE_KEY=""` to the `.env.local` file in this directory.If you want to sync Clerk user data via webhooks, check out this [example repo](https://github.com/thomasballinger/convex-clerk-users-table/).