S05: NATS endpoint catalog, passthrough and error-bundle docs

This commit is contained in:
George Lambert 2026-09-15 22:17:17 -04:00
commit 0cf87863d4
15 changed files with 1315 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
SPHINXBUILD ?= sphinx-build
SOURCEDIR = source
BUILDDIR = build
.PHONY: html latexpdf all
html:
$(SPHINXBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)/html"
latexpdf:
$(SPHINXBUILD) -b latex "$(SOURCEDIR)" "$(BUILDDIR)/latex"
cd "$(BUILDDIR)/latex" && pdflatex -interaction=nonstopmode nats-service-endpoints.tex && pdflatex -interaction=nonstopmode nats-service-endpoints.tex
all: html latexpdf