docs: add architecture documentation and slides

This commit is contained in:
2026-07-14 11:04:49 +03:30
parent e99060de41
commit c54f6edc1e
23 changed files with 765 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# ADR 003: Dispatch SMS Through RabbitMQ
## Status
Accepted.
## Context
SMS providers are external services and can fail or respond slowly.
## Decision
Publish OTP SMS jobs to RabbitMQ and process them in a dedicated worker with manual acknowledgements, retries, and a dead-letter queue.
## Consequences
The auth service remains responsive. SMS delivery is isolated and easier to retry, monitor, and replace.