Initial commit

This commit is contained in:
2025-06-02 00:13:27 +08:00
commit 3a2eca9e15
206 changed files with 9726 additions and 0 deletions

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
live:
@docker run --rm -it -p 3000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
@echo "Open http://localhost:3000 to see live preview"
build:
@docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material build -v
@echo "Open http://localhost:8080/docs to see compiled documentation"