about summary refs log tree commit diff
path: root/HACKING.md
diff options
context:
space:
mode:
authorArun Isaac2026-08-14 21:47:46 +0100
committerArun Isaac2026-08-15 20:53:15 +0100
commitbc371f2374156b7f6593ef0287bfb52b478ed92e (patch)
treefe39b5413be6f925c04092952e0dac31a5d9fe89 /HACKING.md
parent72f63f7817579d7dd678f771f0a0b65111543f67 (diff)
downloaddomagi-bc371f2374156b7f6593ef0287bfb52b478ed92e.tar.gz
domagi-bc371f2374156b7f6593ef0287bfb52b478ed92e.tar.lz
domagi-bc371f2374156b7f6593ef0287bfb52b478ed92e.zip
Document website building instructions.
Diffstat (limited to 'HACKING.md')
-rw-r--r--HACKING.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/HACKING.md b/HACKING.md
index d2cf884..5fa0c63 100644
--- a/HACKING.md
+++ b/HACKING.md
@@ -29,3 +29,14 @@ Run tests.
 ```
 ./pre-inst-env python3 -m pytest
 ```
+
+# Build the website
+
+Build the website using Guix.
+```
+guix build -L .guix -f .guix/domagi-website.scm
+```
+Serve it using darkhttpd like below, then navigate to http://localhost:8080/domagi/ on your browser.
+```
+darkhttpd $(guix build -L .guix -f .guix/domagi-website.scm) --addr 127.0.0.1
+```