Public documentation for LedgerMem, served at docs.proofly.dev.
Built with Next.js 15 and
Fumadocs. MDX content lives in content/docs/.
npm install
npm run dev
# open http://localhost:3000The postinstall script runs fumadocs-mdx to generate the source
manifest. Re-run it any time you add or rename a content file.
.
├── app/ # Next.js App Router pages
│ ├── (home)/page.tsx # Landing page
│ ├── docs/[[...slug]] # Docs catch-all
│ └── api/search/route.ts # Built-in search endpoint
├── content/docs/ # MDX content
│ ├── concepts/ # Conceptual docs
│ ├── sdks/ # Per-language SDK guides
│ ├── integrations/ # Framework integrations
│ ├── connectors/ # Data connectors
│ ├── mcp/ # MCP client guides
│ └── api-reference/ # OpenAPI reference
├── public/openapi.yaml # OpenAPI 3.1 contract
└── source.config.ts # Fumadocs MDX config
- Create
content/docs/<section>/<slug>.mdx. - Add the slug to the section's
meta.json. npm run devand the page appears under/docs/<section>/<slug>.
We deploy to Cloudflare Pages on every push to main:
npm run build
# Cloudflare Pages reads .next/ via @cloudflare/next-on-pagesSet BUCKET_URL in the Pages project to point at your published
results bucket if you want the docs to fetch live data anywhere.
- Code: MIT (see LICENSE).
- Content: CC-BY 4.0.