Skip to content

Commit 556a736

Browse files
committed
Create a proof-of-concept for remote-content retreval
Remove community/contribute.md - this is pulled via remote-content plugin Add remote-content plugin and pull from sources files in project rewrite any links that are broken Create a utils to easily manage the links to the source Signed-off-by: Pete Cheslock <[email protected]>
1 parent ab49aca commit 556a736

File tree

13 files changed

+679
-87
lines changed

13 files changed

+679
-87
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
node_modules
22
.DS_Store
33
build
4-
.docusaurus
4+
.docusaurus
5+
6+
# Remote content files (downloaded automatically)
7+
docs/community/contribute.md
8+
docs/community/code-of-conduct.md

docs/community/contact_us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
sidebar_position: 1
2+
sidebar_position: 3
33
---
44

55
# Talk to us!

docs/community/contribute.md

Lines changed: 0 additions & 84 deletions
This file was deleted.

docs/guide/Installation/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ llm-d includes built-in support for metrics collection using Prometheus and Graf
195195
`--disable-metrics-collection` flag during installation. llm-d applies ServiceMonitors for vLLM and inference-gateway services to trigger Prometheus
196196
scrape targets. In OpenShift, the built-in user workload monitoring Prometheus stack can be utilized. In Kubernetes, Prometheus and Grafana are installed from the
197197
prometheus-community [kube-prometheus-stack helm charts](https://github.com/prometheus-community/helm-charts/tree/main/charts/kube-prometheus-stack).
198-
The [llm-d metrics overview](./metrics-overview.md) lists the metrics scraped with a default llm-d install.
198+
The [llm-d metrics overview](https://github.com/llm-d/llm-d-deployer/blob/main/quickstart/metrics-overview.md) lists the metrics scraped with a default llm-d install.
199199
200200
#### Accessing the Metrics UIs
201201

docusaurus.config.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
// See: https://docusaurus.io/docs/api/docusaurus-config
66

77
import { themes as prismThemes } from "prism-react-renderer";
8+
import remoteContentPlugins from "./remote-content/remote-content.js";
89

910
//import GHiconUrl from "./docs/assets/github-mark-white.svg";
1011
//import LIiconURL from "./docs/assets/linkedin-mark-white.svg";
@@ -94,6 +95,19 @@ const config = {
9495
}),
9596
],
9697
],
98+
99+
// Plugins configuration
100+
plugins: [
101+
// Remote content plugins (managed independently)
102+
...remoteContentPlugins,
103+
104+
// Add your other plugins here
105+
// Examples:
106+
// ['@docusaurus/plugin-google-analytics', { trackingID: 'UA-XXXXXX-X' }],
107+
// ['docusaurus-plugin-sass', {}],
108+
// Add any other plugins you need
109+
],
110+
97111
markdown: { mermaid: true },
98112
themes: ["@docusaurus/theme-mermaid"],
99113

0 commit comments

Comments
 (0)