This site is compiled by Hugo and served as plain files. The authoring workflow is equally plain: write Markdown, review the generated page, and commit it. Go Chroma understands common backend and frontend languages during the Hugo build. main.go 1package main 2 3import "fmt" 4 5func main() { 6 message := "build once, serve anywhere" 7 fmt.Println(message) 8} A small service health.py 1from http.server import BaseHTTPRequestHandler, HTTPServer 2 3class Health(BaseHTTPRequestHandler): 4 def do_GET(self): 5 self.send_response(200) 6 self.end_headers() 7 self.wfile.write(b"ok") 8 9HTTPServer(("0.0.0.0", 8080), Health).serve_forever() Container configuration Dockerfile 1FROM nginx:alpine 2COPY public/ /usr/share/nginx/html/ compose.yaml 1services: 2 blog: 3 image: developer-blog:latest 4 ports: 5 - "8080:80" Post.java 1record Post(String title, boolean published) {} No runtime database and no browser-side highlighting bundle are involved. ...