File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,8 +50,9 @@ same account (Cloudflare creates the DNS record and certificate):
5050pnpm cf workers domains update --hostname cdn.example.com --service cumulus --zone-name example.com --zone-id < zone id>
5151```
5252
53- The cache is keyed by path, not host, so the warm cache carries over and
54- ` workers.dev ` keeps working alongside.
53+ The cache is keyed by path, not host, so the warm cache carries over. The
54+ config sets ` workersDev: false ` , so the ` workers.dev ` hostname is off once a
55+ domain is attached; remove that line to keep it.
5556
5657` pnpm dev ` runs it locally (real PLC directory and PDSes, local cache).
5758
Original file line number Diff line number Diff line change @@ -4,14 +4,11 @@ import { decodeCborSequence } from "../../src/cbor.ts";
44
55/**
66 * Runs against a deployed Worker (Node runner, HTTP only):
7- * CUMULUS_URL default https://cumulus.ascorbic.workers.dev
7+ * CUMULUS_URL default https://cdn.cirrus.earth
88 * ADMIN_PASSWORD required for purge sequences
99 * TEST_DID/TEST_CID a real, small, allowlisted blob
1010 */
11- const BASE = ( process . env . CUMULUS_URL ?? "https://cumulus.ascorbic.workers.dev" ) . replace (
12- / \/ + $ / ,
13- "" ,
14- ) ;
11+ const BASE = ( process . env . CUMULUS_URL ?? "https://cdn.cirrus.earth" ) . replace ( / \/ + $ / , "" ) ;
1512const PASSWORD = process . env . ADMIN_PASSWORD ?? passwordFromDotenv ( ) ;
1613
1714function passwordFromDotenv ( ) : string | undefined {
You can’t perform that action at this time.
0 commit comments