summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-08-01 23:56:19 -0500
committerChristian Cleberg <[email protected]>2026-08-01 23:56:19 -0500
commitc03e38b07ce439f9e6f4d23cb470193393e840e2 (patch)
tree356657ff9396912e1c8bfb36f8c0d4afe283b152 /README.md
parent65f7a9607a60adbcb33ce4227f96980345006d5e (diff)
downloadkrz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.tar.gz
krz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.tar.bz2
krz.sh-c03e38b07ce439f9e6f4d23cb470193393e840e2.zip
initial commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..0e0b3e8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+# krz.sh
+
+Source for [krz.sh](https://krz.sh) — the krazy warez website. Built with
+[Zola](https://www.getzola.org/).
+
+## Develop
+
+```sh
+zola serve
+```
+
+Then open http://127.0.0.1:1111.
+
+## Build
+
+```sh
+zola build
+```
+
+Output is written to `public/`.
+
+## Structure
+
+- `config.toml` — site configuration
+- `content/` — pages (home, `services/`, `apps/`, `about/`)
+- `templates/` — Tera templates
+- `sass/main.scss` — styles (compiled to `main.css`)
+- `static/` — assets, `favicon.svg`, and `CNAME`
+
+## Deploy
+
+Pushing to `main` builds and publishes to GitHub Pages via
+`.github/workflows/deploy.yml`. The custom domain is set in `static/CNAME`.