flndrn 8d737f7120 docs: Doltgres-first handoff, MCP guides, and public docs accuracy před 1 měsícem
..
auth-pilot 8d737f7120 docs: Doltgres-first handoff, MCP guides, and public docs accuracy před 1 měsícem
counter 0935174f7b docs(examples): add minimal counter example před 3 měsíci
realtime-chat 9c74a2fe11 feat(docs,examples,scripts): roadmap page + realtime-chat example + domain-swap script + CONTRIBUTING před 3 měsíci
todo-app 419c1f7a9a feat: briven doctor + operator runbook + examples/todo-app před 3 měsíci
README.md 05acab3df2 feat(auth): readiness bar — tests, better-auth upgrade, trust sprint plan před 1 měsícem

README.md

briven examples

each subdirectory is a self-contained briven project you can copy as a starting point. all examples target the latest @briven/cli. license: MIT.

example what it covers
counter the smallest possible briven app: one row, two functions, reactive query end-to-end
todo-app the canonical hello-world: schema, four mutations + one reactive query, the react client
realtime-chat two-table schema + per-room reactive queries — a multi-room chat in ~80 lines
auth-pilot smallest Briven Auth wiring: middleware proxy, @briven/auth client, hosted sign-in button
(more on the way — file-uploads)

use one of these

# 1. copy the example into a new folder
cp -r examples/todo-app my-todo-app
cd my-todo-app

# 2. link it to a briven project (requires `briven login` first)
briven link

# 3. push schema + functions
briven deploy

# 4. invoke and verify
briven invoke listTodos

each example ships its own README.md with a 30-second tour.