Skip to content

Commit 53ec256

Browse files
committed
fix: traefik seed, doc rendering order
1 parent 701e5e7 commit 53ec256

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.scripts/docs.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ const targets = {
2222
main().catch(console.error);
2323

2424
async function main() {
25+
// Must be first to be ready for the copy
26+
await renderServiceIndex()
2527
await Promise.all([
26-
renderServiceIndex(),
2728
copyDocsToWiki(),
2829
copyDocsToApp(),
2930
copyTargets(),

compose.x.traefik.modularmax.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file is generated by seed-traefik.ts script,
2+
# any updates will be overwritten.
3+
services:
4+
modularmax:
5+
labels:
6+
- "traefik.enable=true"
7+
- "traefik.http.routers.modularmax.rule=Host(`modularmax.${HARBOR_TRAEFIK_DOMAIN}`)"
8+
- "traefik.http.services.modularmax.loadbalancer.server.port=${HARBOR_MODULARMAX_HOST_PORT}"
9+
- "traefik.http.routers.modularmax.entrypoints=web"
10+
- "traefik.http.routers.modularmax.service=modularmax"
11+
12+
networks:
13+
- traefik-public

docs/2.-Services.md

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ LLM inference in C/C++
7878
- [mistral.rs](https://github.com/av/harbor/wiki/2.2.6-Backend:-mistral.rs) <span style="opacity: 0.5;">`Backend`</span><br/>
7979
Blazingly fast LLM inference.
8080

81+
- [Modular MAX](https://github.com/av/harbor/wiki/2.2.17-Backend-Modular-MAX) <span style="opacity: 0.5;">`Backend`</span><br/>
82+
MAX is a platform from Modular (creators of Mojo) for running LLMs.
83+
8184
- [Nexa SDK](https://github.com/av/harbor/wiki/2.2.15-Backend:-Nexa-SDK) <span style="opacity: 0.5;">`Backend`, `Partial Support`</span><br/>
8285
Nexa SDK is a comprehensive toolkit for supporting ONNX and GGML models.
8386

0 commit comments

Comments
 (0)