Skip to main content
Complete the Prerequisites first.

Scaffold the project

bunx create-mf2-app my-app
cd my-app
bun install

Initialize Convex

bunx convex dev
Follow the prompts to create or link a Convex project. This watches your backend code and pushes changes automatically.

Configure environment variables

Fill in your API keys in the .env.local files. See Environment Variables.

Start development

bun run dev
All apps start in parallel: To run a single app:
bun run dev --filter=app
Replace app with web, api, docs, email, or storybook.