Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
2a68327
Rewrite deployment guide intro, runtime selection, and configuration …
dahlia Apr 18, 2026
63d718b
Add traditional deployment section: systemd, reverse proxies, process…
dahlia Apr 18, 2026
92cd36b
Add container deployment section: Dockerfile, Compose, Kubernetes, PaaS
dahlia Apr 18, 2026
d926abd
Document web/worker separation, immediate:true hazard, and pool sizing
dahlia Apr 18, 2026
5b4cb1c
Document serverless deployments: Cloudflare Workers and Deno Deploy EA
dahlia Apr 18, 2026
cbb49c0
Document the security concerns that matter most to Fedify servers
dahlia Apr 18, 2026
98aed6e
Add a production observability section covering logs, traces, and met…
dahlia Apr 18, 2026
c1991f2
Document the ActivityPub-specific operational concerns
dahlia Apr 18, 2026
c5cc76d
Add a pre-launch checklist summarizing the guide
dahlia Apr 18, 2026
27b152b
Render GFM task-list checkboxes in VitePress manual pages
dahlia Apr 19, 2026
0345a07
Format file names in deployment guide as italics, not backticks
dahlia Apr 19, 2026
182d4c9
Introduce srvx as a universal Node.js/Deno/Bun adapter alternative
dahlia Apr 19, 2026
65bbddd
Remove erroneous ~ prefix from manual reference-style link labels
dahlia Apr 19, 2026
85c8457
Replace bold emphasis with italics; use headings for checklist groups…
dahlia Apr 19, 2026
16ea60b
Remove spaces around slashes; add Docker Compose and Podman Compose t…
dahlia Apr 19, 2026
2c6210c
Italic Dockerfile references; backtick Kubernetes resource type names
dahlia Apr 19, 2026
81897e2
Fix Deno-specific inaccuracies flagged in PR review
dahlia Apr 19, 2026
2334580
Fix security and correctness issues in code examples and K8s guidance
dahlia Apr 19, 2026
8f1d96d
Soften DNS-rebinding claim; add jsr-ref prefix to permanentFailureSta…
dahlia Apr 19, 2026
3284059
Fix grammar: "categories of secret" → "categories of secrets"
dahlia Apr 19, 2026
8d06dbd
Add "target" to sanitize-html allowedAttributes for <a>
dahlia Apr 19, 2026
b776632
Fix jsr-ref syntax misuses in deploy.md
dahlia Apr 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .hongdown.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ proper_nouns = [
"Deno",
"Deno Deploy",
"Deno Lint",
"Docker Compose",
"Fastify",
"Fedify",
"Elysia",
Expand Down Expand Up @@ -73,6 +74,7 @@ proper_nouns = [
"OpenTelemetry",
"Pixelfed",
"Pleroma",
"Podman Compose",
"RabbitMQ",
"Redis",
"Scoop",
Expand Down
2 changes: 2 additions & 0 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import taskLists from "@hackmd/markdown-it-task-lists";
import { transformerTwoslash } from "@shikijs/vitepress-twoslash";
import abbr from "markdown-it-abbr";
import deflist from "markdown-it-deflist";
Expand Down Expand Up @@ -288,6 +289,7 @@ export default withMermaid(defineConfig({
md.use(abbr);
md.use(deflist);
md.use(footnote);
md.use(taskLists);
md.use(groupIconMdPlugin);
md.use(jsrRefPlugin);
},
Expand Down
Loading