Stub out Stripe webhook integration for upcoming billing support:
- Add
/api/webhook/stripe endpoint using raw body mode (context.req.text())
- Import and wire up basic logic per hono-stripe example (verify signature, parse event)
- Add TODO comments for on-live activation and switching to relevant business logic
- Reference: https://hono.dev/examples/stripe-webhook/
Extendable for planned paid tiers; also serves as pattern for future HMAC-verified webhooks (e.g., GitHub, others).
Stub out Stripe webhook integration for upcoming billing support:
/api/webhook/stripeendpoint using raw body mode (context.req.text())Extendable for planned paid tiers; also serves as pattern for future HMAC-verified webhooks (e.g., GitHub, others).