Compare commits

..

3 Commits

Author SHA1 Message Date
Lance Vick 202083b6ee
Import relevant bits of past docs 2024-12-07 11:42:40 -08:00
Lance Vick eec1dc9698
render as mermaid 2024-12-07 11:10:15 -08:00
Lance Vick 0c808d93eb
first pass at document structure 2024-12-07 11:08:36 -08:00
3 changed files with 0 additions and 41 deletions

View File

@ -1,18 +0,0 @@
root = true
[Containerfile]
charset = utf8
indent_style = tab
indent_size = 2
[Makefile]
indent_style = tab
indent_size = 2
[*.md]
indent_style = space
indent_size = 2
[*]
end_of_line = lf
insert_final_newline = true

1
.gitignore vendored
View File

@ -1 +0,0 @@
out/

View File

@ -1,22 +0,0 @@
PORT := 8080
default: build
out:
mkdir -p out
.PHONY: build
build: out/index.json
out/index.json: out Containerfile
docker \
build \
-f Containerfile \
--output type=oci,rewrite-timestamp=true,force-compression=true,name=distrust/docs,tar=true,dest=- \
. \
| tar -C out/ -mx
.PHONY: serve
serve: build
tar -C out/ -cf - . | docker load
docker run -p $(PORT):8080 distrust/docs