This repo contains:
pages/– Cloudflare Pages static site for heliumtools.orgworker/– Cloudflare Worker API + cron for OUI notifier (api.heliumtools.org)
Both Pages and Worker auto-deploy from the main branch via GitHub.
The static HTML lives in pages/public. Local development:
cd pages/public
npm install
npm run devThe Worker expects a D1 database bound as DB and Resend for outbound email. Secrets (RESEND_API_KEY, SOLANA_RPC_URL) are set via wrangler secret put.
Local development:
cd worker
wrangler dev