Skip to content

Commit 5f0b41c

Browse files
committed
Deployed suite and README follow the custom domain
1 parent cad5c65 commit 5f0b41c

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ same account (Cloudflare creates the DNS record and certificate):
5050
pnpm 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

test/integration/deployed.test.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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(/\/+$/, "");
1512
const PASSWORD = process.env.ADMIN_PASSWORD ?? passwordFromDotenv();
1613

1714
function passwordFromDotenv(): string | undefined {

0 commit comments

Comments
 (0)