One-time setup
Add your Clerk API keys
ClearClaim uses Clerk for sign-in and email. The keys in .env.local are still placeholders — paste real keys from Clerk, then restart the dev server.
- 1Go to dashboard.clerk.com → create an app named ClearClaim
- 2Open Configure → API Keys and copy the Publishable key and Secret key
- 3Edit
.env.localin the clearclaim folder and replace the two key lines - 4Stop the server (Ctrl+C) and run
npm run devagain
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_test_...
CLERK_SECRET_KEY=sk_test_...
See CLERK.md in the project folder for the full guide.