Files
heygo/README.md
T

947 B

Heygo

Heygo is an independent Cloudflare React + Workers scaffold for a future shortlinks app.

This repository lives at /home/ai-bot/code/heygo and is intentionally separate from the old Linux/Django Links repository. The old Links repository under /home/ai-bot/code/links is read-only reference material only and must not be modified by this project.

Local development

npm install
npm run dev
npm run dev:worker
  • npm run dev starts the Vite React SPA dev server.
  • npm run dev:worker starts the Cloudflare Worker locally with Wrangler.

Verification

npm run build
npm test
  • npm run build type-checks the TypeScript project and builds the React SPA into dist/client for Workers Assets.
  • npm test runs Vitest tests against the Worker API handler.

Current API skeleton

  • GET /api/health returns JSON health status from the Worker.
  • Unknown /api/* routes return JSON 404 responses.