As of 2025-03-05, this site is served by cloudflare. The workflow is: I write the content in markdown (mostly), using obsidian, push the changes to github, from where cloudflare picks up the changes and builds it into static HTML pages using Quartz on Cloudflare Workers.

Many “static files” like images, PDF files etc., are served from https://files.btbytes.com/ domain, which is a Cloudflare bucket.

Site updates

2025-08-09: building the site on cloudflare takes too much time (almost 4 minutes), so I decided to build the site on my laptop and upload the built artects. I have a justfile, that has the following lines to take care of building and “deploying” the cloudflare site.

default: build deploy

build:
    npx quartz build

deploy:
    wrangler pages deploy public --project-name btbytes