Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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: 1 addition & 1 deletion app/spicedb/getting-started/first-steps/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ import { InlinePlayground } from "@/components/playground";
Follow the instructions below to install to your development machine:

<Cards num={2}>
<Cards.Card arrow={true} icon={<FontAwesomeIcon icon={faServer} />} title="Install the SpiceDB server binary" href="/spicedb/getting-started/installing-spicedb" />
<Cards.Card arrow={true} icon={<FontAwesomeIcon icon={faServer} />} title="Install the SpiceDB server binary" href="/spicedb/getting-started/install/docker" />
<Cards.Card arrow={true} icon={<FontAwesomeIcon icon={faTerminal} />} title="Install the SpiceDB CLI tool: Zed" href="/spicedb/getting-started/installing-zed" />
</Cards>

Expand Down
27 changes: 27 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,33 @@ export default withNextra({
destination: "/spicedb/best-practices/:path*",
permanent: true,
},
// Materialize was promoted from a single concept page to a top-level
// section (PR #562). Keep the old indexed URL working.
{
source: "/authzed/concepts/authzed-materialize",
destination: "/materialize/getting-started/overview",
permanent: true,
},
// The Ops pages below moved on 2026-02-05 without redirects, leaving
// ~2 months of indexed URLs 404ing. ai-agent-authorization and
// secure-rag-pipelines moved into the new Tutorials section; the
// langchain/langgraph RAG page was folded into the langchain-spicedb
// integration page.
{
source: "/spicedb/ops/ai-agent-authorization",
destination: "/spicedb/tutorials/ai-agent-authorization",
permanent: true,
},
{
source: "/spicedb/ops/secure-rag-pipelines",
destination: "/spicedb/tutorials/secure-rag-pipelines",
permanent: true,
},
{
source: "/spicedb/ops/spicedb-langchain-langgraph-rag",
destination: "/spicedb/integrations/langchain-spicedb",
permanent: true,
},
];
},
// This is necessary because we're using CDN domains.
Expand Down
Loading