[PR #8086] [MERGED] docs: infrastructure docs #15982

Closed
opened 2026-04-13 10:20:12 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/8086
Author: @ping-maxwell
Created: 2/20/2026
Status: Merged
Merged: 3/1/2026
Merged by: @Bekacru

Base: canaryHead: docs/infrastructure


📝 Commits (10+)

📊 Changes

13 files changed (+4716 additions, -525 deletions)

View changed files

📝 .cspell/tech-terms.txt (+5 -1)
docs/components/mdx/mermaid.tsx (+60 -0)
docs/content/docs/infrastructure/getting-started.mdx (+121 -0)
docs/content/docs/infrastructure/introduction.mdx (+38 -0)
docs/content/docs/infrastructure/plugins/dash.mdx (+361 -0)
docs/content/docs/infrastructure/plugins/sentinel.mdx (+498 -0)
docs/content/docs/infrastructure/services/email.mdx (+434 -0)
docs/content/docs/infrastructure/services/sms.mdx (+289 -0)
📝 docs/package.json (+102 -3)
📝 landing/components/sidebar-content.tsx (+68 -0)
📝 landing/components/ui/dynamic-code-block.tsx (+1 -1)
📝 packages/drizzle-adapter/src/drizzle-adapter.ts (+4 -11)
📝 pnpm-lock.yaml (+2735 -509)

📄 Description

Summary by cubic

Adds Infrastructure docs for plugins and services with intro/getting started/pricing, enables a theme-aware Mermaid MDX component, and updates the sidebar with an Infrastructure section. Removes unfinished dashboard/enterprise docs and improves billing copy.

  • New Features

    • Docs for plugins (dash, sentinel) and services (email, SMS), plus introduction, getting started, pricing.
    • Mermaid MDX component with dynamic import and theme support; registered on docs page; added mermaid@^11.12.3.
    • Sidebar updated with Infrastructure section, icons, and routes.
    • Simplified dynamic code block options typing.
  • Bug Fixes

    • Removed dashboard and enterprise docs/routes not ready yet.
    • Improved payments/billing copy; polished new docs; expanded cspell tech-terms.

Written for commit 00bd6d1a34. Summary will update on new commits.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/better-auth/better-auth/pull/8086 **Author:** [@ping-maxwell](https://github.com/ping-maxwell) **Created:** 2/20/2026 **Status:** ✅ Merged **Merged:** 3/1/2026 **Merged by:** [@Bekacru](https://github.com/Bekacru) **Base:** `canary` ← **Head:** `docs/infrastructure` --- ### 📝 Commits (10+) - [`727adca`](https://github.com/better-auth/better-auth/commit/727adca7abb802053425839798a83d7bdded554a) docs: infrastructure docs - [`c3adbb3`](https://github.com/better-auth/better-auth/commit/c3adbb391c3bf19f81441c13a79249fdb1b13ded) fix: lint - [`a7e38a8`](https://github.com/better-auth/better-auth/commit/a7e38a837241bff6cc48686221aebf1e8968690b) Update tech-terms.txt - [`1c3db64`](https://github.com/better-auth/better-auth/commit/1c3db64bbd4f72f41de2d98b9da8c3a130d055fe) Update getting-started.mdx - [`240113d`](https://github.com/better-auth/better-auth/commit/240113d65d62adebffff673798d6c23226fb480c) fix: remove enterprise stuff - [`6456498`](https://github.com/better-auth/better-auth/commit/6456498a9e658b88c64253896856e5f404455ace) fix: improve payments - [`e7a0d56`](https://github.com/better-auth/better-auth/commit/e7a0d563f88111e9b244836611d506b1aacd757c) remove: dashboard - [`88aeb4d`](https://github.com/better-auth/better-auth/commit/88aeb4ddaee5fe723f1a9a6bffd762dd954a69eb) fix: doc improvements - [`3b2fd3e`](https://github.com/better-auth/better-auth/commit/3b2fd3efe93b060c771748764ca31e7c5169bb27) Revert "fix: drizzle transform input crashes dates (#8105)" - [`00bd6d1`](https://github.com/better-auth/better-auth/commit/00bd6d1a349fff278ec1c41996fcb875352e6d8d) Merge branch 'canary' into docs/infrastructure ### 📊 Changes **13 files changed** (+4716 additions, -525 deletions) <details> <summary>View changed files</summary> 📝 `.cspell/tech-terms.txt` (+5 -1) ➕ `docs/components/mdx/mermaid.tsx` (+60 -0) ➕ `docs/content/docs/infrastructure/getting-started.mdx` (+121 -0) ➕ `docs/content/docs/infrastructure/introduction.mdx` (+38 -0) ➕ `docs/content/docs/infrastructure/plugins/dash.mdx` (+361 -0) ➕ `docs/content/docs/infrastructure/plugins/sentinel.mdx` (+498 -0) ➕ `docs/content/docs/infrastructure/services/email.mdx` (+434 -0) ➕ `docs/content/docs/infrastructure/services/sms.mdx` (+289 -0) 📝 `docs/package.json` (+102 -3) 📝 `landing/components/sidebar-content.tsx` (+68 -0) 📝 `landing/components/ui/dynamic-code-block.tsx` (+1 -1) 📝 `packages/drizzle-adapter/src/drizzle-adapter.ts` (+4 -11) 📝 `pnpm-lock.yaml` (+2735 -509) </details> ### 📄 Description <!-- This is an auto-generated description by cubic. --> ## Summary by cubic Adds Infrastructure docs for plugins and services with intro/getting started/pricing, enables a theme-aware Mermaid MDX component, and updates the sidebar with an Infrastructure section. Removes unfinished dashboard/enterprise docs and improves billing copy. - **New Features** - Docs for plugins (dash, sentinel) and services (email, SMS), plus introduction, getting started, pricing. - Mermaid MDX component with dynamic import and theme support; registered on docs page; added mermaid@^11.12.3. - Sidebar updated with Infrastructure section, icons, and routes. - Simplified dynamic code block options typing. - **Bug Fixes** - Removed dashboard and enterprise docs/routes not ready yet. - Improved payments/billing copy; polished new docs; expanded cspell tech-terms. <sup>Written for commit 00bd6d1a349fff278ec1c41996fcb875352e6d8d. Summary will update on new commits.</sup> <!-- End of auto-generated description by cubic. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-13 10:20:12 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#15982