Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.51 KB

File metadata and controls

41 lines (28 loc) · 1.51 KB

Summary

Closes #

Dual-entrypoint architecture

This repo ships two Express applications. npm run dev (src/index.ts) is the default production path and is the one reviewers and CI care about. src/app.ts (npm run dev:hackathon) is a separate mock/demo entrypoint.

Several past issues were closed while the functionality existed only in one entrypoint. Before requesting review, confirm your change behaves correctly on the default npm run dev path. See docs/architecture.md for the entrypoint map and the checklist for adding new routes.

Affected endpoints

Checklist

  • Verified the change works on the default npm run dev (src/index.ts) entrypoint.
  • If the change affects shared functionality, verified it on the hackathon src/app.ts entrypoint too (or explained why it does not apply).
  • Listed all affected endpoints above (or marked "None").
  • Added or updated tests covering the change.
  • npm run lint and npm test pass locally.
  • Updated docs (README, OpenAPI annotations, docs/) where behavior changed.

Notes for reviewers