From 12f87ce4b1dbf640a7918f75317eaf7c69c1c7cf Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 5 Jun 2025 11:36:10 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1182f55..8d16bd5 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,22 @@ Simplistic static site generator `cd hydrogen && pip install -r requirements` -_put some Markdown files into the `content` directory_ +_put some Markdown files into the `content` directory._ + `./hydrogen.py` +_the `public` directory is ready to be published._ + +## Building and running in Docker +`git clone https://git.exocortex.ru/Exocortex/hydrogen.git` + +`cd hydrogen && docker buildx build --tag hydrogen .` + +_put some Markdown files into the `content` directory_ + +`docker run -v .:/app` + +_the `public` directory is ready to be published._ ## Conventions / expectations `hydrogen` expects the following files in the `content` directory: From b52973ee072ce6ed012e35692a463df7734bae0a Mon Sep 17 00:00:00 2001 From: sg Date: Thu, 5 Jun 2025 13:20:53 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d16bd5..a55e93c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ _the `public` directory is ready to be published._ _put some Markdown files into the `content` directory_ -`docker run -v .:/app` +`docker run -v .:/app hydrogen` _the `public` directory is ready to be published._