# FastAPI Production Checklist > Production readiness checklist for FastAPI with durable jobs, event-driven design, and DDD-minded structure. Site: https://fastapi-production-checklist.grok.me Version: 2.2 Updated: 2026-08-05 Creator: Amin Sharifi (http://moaminsharifi.com/) Full text: https://fastapi-production-checklist.grok.me/llms-full.txt ## Summary Ship FastAPI services that survive production: settings, security, health, deploy, background workers, event catalogs, and bounded contexts. Durable async work uses RabbitMQ (commands/jobs) and/or Kafka (domain events). Redis is for cache and rate limits, not the primary job broker. ## Canonical URLs - https://fastapi-production-checklist.grok.me/ - https://fastapi-production-checklist.grok.me/llms-full.txt - https://fastapi-production-checklist.grok.me/guides/01-async-vs-jobs.md - https://fastapi-production-checklist.grok.me/guides/02-brokers-celery-redis-rabbitmq-kafka.md - https://fastapi-production-checklist.grok.me/guides/03-job-lifecycle-and-schema.md - https://fastapi-production-checklist.grok.me/guides/04-outbox-inbox-idempotency.md - https://fastapi-production-checklist.grok.me/guides/05-celery-rabbitmq-example.md - https://fastapi-production-checklist.grok.me/guides/06-taskiq-rabbitmq-example.md - https://fastapi-production-checklist.grok.me/guides/07-dramatiq-rabbitmq-example.md - https://fastapi-production-checklist.grok.me/guides/08-faststream-kafka-example.md - https://fastapi-production-checklist.grok.me/guides/09-error-taxonomy-retries-dlq.md - https://fastapi-production-checklist.grok.me/guides/10-testing-workers.md - https://fastapi-production-checklist.grok.me/guides/11-event-driven-system-design.md - https://fastapi-production-checklist.grok.me/guides/12-ddd-with-fastapi.md - https://fastapi-production-checklist.grok.me/guides/REFERENCES.md ## Key policy - RabbitMQ for commands/jobs; Kafka for multi-consumer events - Separate API and workers; job status in DB; 202 + job_id - Outbox for critical publishes; inbox for consumers - DDD: bounded contexts, aggregates for invariants, thin adapters ## Creator Amin Sharifi — http://moaminsharifi.com/ ## SEO - Canonical site + sitemap: /sitemap.xml - robots.txt with AI crawler rules - Guides under /docs/*