a Bluesky client for PICO-8 picosky.vinnymac.dev
pico-8 simulation bluesky games
19

Configure Feed

Select the types of activity you want to include in your feed.

fix wrangler: account_id unsupported in Pages toml, pass via env

Pages wrangler.toml doesn't accept account_id (Workers-only key).
Pass CLOUDFLARE_ACCOUNT_ID inline in the Makefile target instead.

Vincent Taverna (Jun 10, 2026, 7:49 AM UTC) 90272a26 552fd96b

+1 -2
+1 -1
Makefile
··· 147 147 148 148 .PHONY: ci-deploy 149 149 ci-deploy: ci-dist ## Deploy committed artifacts to Cloudflare Pages (CI-safe, no pico8 needed) 150 - npx wrangler pages deploy $(DIST) --project-name picosky --commit-dirty=true 150 + CLOUDFLARE_ACCOUNT_ID=ebbd354a5e5728e183b95c92fbcfb770 npx wrangler pages deploy $(DIST) --project-name picosky --commit-dirty=true 151 151 152 152 # --- setup / housekeeping ---------------------------------------------------- 153 153 .PHONY: install-pico8
-1
wrangler.toml
··· 1 1 name = "picosky" 2 - account_id = "ebbd354a5e5728e183b95c92fbcfb770" 3 2 pages_build_output_dir = "dist"