heartwood every commit a ring

Drop host port, hardcode --port 8000 in next:start, reached by Caddy on bythewood-edge

2b973ce1 by Isaac Bythewood · 1 day ago

modified CLAUDE.md
@@ -19,7 +19,9 @@ The site lives at https://isaacbythewood.com/.- `bun start` runs the dev server on port 8000.- `bun run next:build` builds for production.- Docker deployment via `oven/bun:1-alpine` image. See `Dockerfile` and  `docker-compose.yml`. Port is bound to localhost only.  `docker-compose.yml`. The container publishes no host ports; Caddy  reverse-proxies to it by container name on the shared `bythewood-edge`  Docker network.- No test framework is configured.- No ESLint or Prettier configuration.
modified docker-compose.yml
@@ -2,8 +2,5 @@ services:  app:    container_name: isaacbythewood.com    build: .    env_file: .env    ports:      - "127.0.0.1:${PORT}:${PORT}"    command: bun run next:start    restart: unless-stopped
modified package.json
@@ -2,7 +2,7 @@  "private": true,  "scripts": {    "start": "bun --bun next --port 8000",    "next:start": "bun --bun next start --port ${PORT}",    "next:start": "bun --bun next start --port 8000",    "next:build": "bun --bun next build",    "resume": "bun resume/generate.js"  },
deleted samplefiles/env.sample
@@ -1 +0,0 @@PORT=8000