➕ New / Edit Dataset
📋 View Dataset
⚙ Setup Guide
Metadata
Image Source
✦ One URL per line. Images served directly from remote host — no binary upload needed.
✦ Supports Radiopaedia, TCIA, or any publicly accessible image URL.
✦ Supports Radiopaedia, TCIA, or any publicly accessible image URL.
Select a dataset from the sidebar to view its details.
1 — Deploy the Cloudflare Worker
Install wrangler and deploy cloudflare-worker.js:
npm install -g wrangler wrangler login wrangler kv:namespace create "PACS_KV" # Copy the returned id into wrangler.toml
wrangler.toml:
name = "nova-pacs" main = "cloudflare-worker.js" compatibility_date = "2024-09-23" [[kv_namespaces]] binding = "PACS_KV" id = "PASTE_YOUR_KV_NAMESPACE_ID_HERE"
wrangler deploy
2 — Optional: Secure with a Bearer Token
Protect upload/delete operations:
wrangler secret put PACS_SECRET
Paste the same token in the Bearer Secret field. Public GET routes remain open for the viewer.
3 — Configure the Viewer
In viewer Embed 2, set:
var WORKER_URL = 'https://nova-pacs.cardig-member.workers.dev';
The dataset dropdown populates automatically from KV on page load.