Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .hongdown.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ proper_nouns = [
"@fedify/webfinger",
"Activity Streams",
"Activity Vocabulary",
"ActivityKit",
"ActivityPub",
"ActivityStreams",
"Akkoma",
Expand Down
6 changes: 5 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ function getReferenceItems(): { text: string; link: string }[] {
const names = new Set<string>();
for (const workspaceEntry of rootDenoConfig.workspace ?? []) {
if (!workspaceEntry.startsWith("./packages/")) continue;
const packageDenoJsonUrl = new URL(`${workspaceEntry}/deno.json`, repoRootUrl);
const packageDenoJsonUrl = new URL(
`${workspaceEntry}/deno.json`,
repoRootUrl,
);
const packageDenoConfig = JSON.parse(
readFileSync(packageDenoJsonUrl, "utf-8"),
) as PackageDenoConfig;
Expand Down Expand Up @@ -121,6 +124,7 @@ const MANUAL = {
{ text: "Key–value store", link: "/manual/kv.md" },
{ text: "Message queue", link: "/manual/mq.md" },
{ text: "Integration", link: "/manual/integration.md" },
{ text: "Migration", link: "/manual/migrate.md" },
{ text: "Relay", link: "/manual/relay.md" },
Comment thread
dahlia marked this conversation as resolved.
{ text: "Testing", link: "/manual/test.md" },
{ text: "Debugging", link: "/manual/debug.md" },
Expand Down
6 changes: 6 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ bunx @fedify/create your-project-dir
This works the same way as `fedify init` and will guide you through the same
project setup wizard.

> [!TIP]
> Already running a federated service on another JavaScript ActivityPub
> library? See [*Migrating from other libraries*](./manual/migrate.md) for
> guides covering `activitypub-express`, `@activity-kit/*`, hand-rolled
> Express code, and `activitystrea.ms`.

Comment thread
dahlia marked this conversation as resolved.

Manual installation
-------------------
Expand Down
Loading
Loading