diff options
| author | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-22 23:43:08 -0500 |
|---|---|---|
| committer | Hunter Kvalevog <hunter@kvog.sh> | 2026-04-22 23:43:08 -0500 |
| commit | 18e8b32baafb81853a3ad2679d81fb881e8baa1d (patch) | |
| tree | 35a8abc84fcf1ebc3544869a90b0e9614ba2f446 | |
| parent | ef2d7d11e2db16147e0dfc131eea1e5707ac6d42 (diff) | |
| -rw-r--r-- | CLAUDE.md | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 395c020..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,25 +0,0 @@ -# CLAUDE.md - -This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. - -## Commands - -```bash -hugo server # Local dev server at http://localhost:1313/ -hugo # Build to ./public/ -hugo --minify # Production build (used by CI) -``` - -No lint, test, or package install steps — this is a pure Hugo project with no Node dependencies. - -## Architecture - -This is a Hugo static site (theme: hugo-xmin) deployed to kvog.sh via GitHub Actions on push to `master`. The workflow builds with `hugo --minify` and deploys to GitHub Pages. - -- **`hugo.toml`** — site config (baseURL, theme, code highlight style) -- **`content/`** — all Markdown content: `_index.md` (home), `about.md`, `posts/`, `cheatsheets/` -- **`themes/hugo-xmin/`** — minimal theme; layouts and CSS live here -- **`archetypes/default.md`** — template for `hugo new` content -- **`public/`** — build output, not committed (in `.gitignore`) - -New content goes in `content/posts/` or `content/cheatsheets/` as Markdown files with Hugo front matter. |