This is a monorepo template integrated with shadcn/ui for building modern web applications.
Install dependencies for the frontend:
pnpm installpnpm -F backend run setupCreate a .env.local file in the packages/backend directory with the following content:
CLERK_JWT_ISSUER_DOMAIN=xxxCreate a .env.local file in the /apps/web directory with the following content:
NEXT_PUBLIC_CONVEX_URL=[same as your convex_url]
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=xxx
CLERK_SECRET_KEY=xxxYou can find the above values in the Convex documentation.
To start the development server:
pnpm run dev