Cloudflare Pages setup notes
A quick update on the static publishing stack behind this Markdown-first site.
The site now runs as a static Astro blog. Articles live as Markdown files, routes are generated at build time, and the final output is ready for Cloudflare Pages.
What changed
The content model is intentionally small: title, description, date, category, tags, cover image, and body content. That keeps publishing fast without locking the writing into a database.
Why it matters
Static pages are easy to cache and cheap to serve. The build produces plain HTML pages for the home page, post pages, category pages, and tag pages.
Next
The next useful additions would be RSS, search, and per-post social metadata.