A note-taking app that generates flashcards from your notes.
Note
Flashcard generation is handled by the AnkAI AI service.
Install dependencies:
pnpm installCopy the env file:
cp .env.example .env.localCreate/link your Convex project:
pnpm convex:devSet up Clerk, then add the required Clerk and Convex values to .env.local.
You will also need a running instance of the AI service:
ANKAI_AI_API_URL=
ANKAI_AI_API_KEY=Add the same AI service values to your Convex environment variables, since flashcard generation runs from Convex.
Run these two commands concurrently:
pnpm convex:dev
pnpm devOpen:
http://localhost:3000
pnpm dev- start the apppnpm convex:dev- start the convex dev serverpnpm build- build for prodpnpm lint- lint codepnpm format- format code