From 3f3725f203e0b6e1a30c33920212af4f0e9f538a Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Mon, 2 Sep 2024 06:33:47 -0600 Subject: [PATCH] docs.libre.is site --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..274b265 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# docs.libre.is + +Source code for the https://docs.libre.is documentation website. + +# Build +How to build these docs. + +``` +git clone https://code.libre.is/libre/docs.libre.is +# or +git clone git@code.libre.is:libre/docs.libre.is.git + +cd docs.libre.is/ +python -m venv venv +source venv/bin/activate +pip install -U pip poetry +poetry install +poetry update +make clean +make all +rsync -ultav docs/_build/html/ docs.libre.is:/var/www/html/docs.libre.is/ +```