[codex] Add backend WhatsApp demo helper#1
Merged
patrickpassosb merged 1 commit intomasterfrom Apr 10, 2026
Merged
Conversation
The backend and Evolution API were already healthy, but pairing the demo phone and wiring the webhook still required a manual curl sequence. This adds a Bun helper for instance status, webhook setup, and QR export, plus a short operator runbook for the seeded patient flow. Constraint: Demo setup must stay fast and repeatable during a live hackathon Rejected: Configure the webhook implicitly on backend startup | adds hidden side effects to every boot Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep the demo helper env-driven and do not store API keys, instance tokens, or QR artifacts in git Tested: bun run seed, bun run typecheck, bun run demo:whatsapp status, bun run demo:whatsapp webhook, bun run demo:whatsapp qr, curl http://localhost:3000/health Not-tested: End-to-end inbound WhatsApp exchange after manual QR scan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
bedside-backend/scripts/evolution-demo.tsbun run demo:whatsappWhy
The backend and Evolution API were already running, but hackathon demo setup still depended on manual API calls for instance status, webhook configuration, and QR export. This makes the pairing flow repeatable from the repo.
Impact
Root cause
Operational setup knowledge lived in ad hoc commands instead of a checked-in helper and runbook.
Validation
bun run seedbun run typecheckbun run demo:whatsapp statusbun run demo:whatsapp webhookbun run demo:whatsapp qrcurl http://localhost:3000/healthRemaining gap