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
27 changes: 26 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import react from "@astrojs/react";
import starlightClientMermaid from "@pasqal-io/starlight-client-mermaid";

// https://astro.build/config
export default defineConfig({
Expand All @@ -25,6 +26,7 @@ export default defineConfig({
editLink: {
baseUrl: "https://github.com/yaptide/for_developers/edit/main/",
},
plugins: [starlightClientMermaid()],
sidebar: [
{
label: "Home",
Expand All @@ -44,7 +46,7 @@ export default defineConfig({
{
label: "Full Stack - SLURM",
slug: "local-setup/local-slurm",
}
},
],
},
{
Expand Down Expand Up @@ -76,6 +78,29 @@ export default defineConfig({
{ label: "Authentication Model", slug: "architecture/auth-model" },
],
},
{
label: "Orchestration Rework",
collapsed: false,
items: [
{ label: "Vision", slug: "rework-orchestration" },
{
label: "Context & Constraints",
autogenerate: { directory: "rework-orchestration/context" },
},
{
label: "Architecture Decisions",
autogenerate: { directory: "rework-orchestration/adr" },
},
{
label: "Design Documents",
autogenerate: { directory: "rework-orchestration/design" },
},
{
label: "Research Sessions",
autogenerate: { directory: "rework-orchestration/research" },
},
],
},
{
label: "Contributing",
collapsed: false,
Expand Down
Loading
Loading