Recipes¶
End-to-end scenarios that combine multiple systems. Each recipe gives you the Gradle deps, StoveConfig.kt, and a runnable test shape for a real-world flow. Treat package names, ports, and app-specific property keys as values to adapt.
Recipes complement the Setup Wizard (which composes systems) and the Components reference (which documents each system in isolation).
Working source on GitHub
Every recipe on this page is a tightened walkthrough of a project in the Stove repo's recipes/ folder. Clone, open in your IDE, run the documented test task, then adapt the wiring to your application.
Available recipes¶
-
Order placement flow
HTTP POST → Postgres write → WireMock external call → Kafka event published.
Browse the source¶
Don't see your scenario? Jump straight to the working projects.
Spring showcase (HTTP + Postgres + Kafka + WireMock + tracing), Ktor + Postgres, Ktor + Mongo.
Spring Boot + Postgres, Quarkus basic. e2e tests written in Kotlin against a Java AUT.
Full Go showcase: HTTP + Postgres + Kafka (sarama / franz / segmentio) + OTel + dashboard + coverage. Single project, both modes via go.aut.mode.
Pattern of a recipe¶
Every recipe page follows the same review shape:
- What you'll test. The business flow.
- Systems used. Links to each system's reference page.
- Gradle dependencies. Paste-ready.
StoveConfig.kt. Paste-ready.- The test. Paste-ready.
- Variations. Ktor / Micronaut / Quarkus / Go equivalents where relevant.
- Common pitfalls. What tends to break and how to diagnose it.
Want a recipe for your flow?¶
If you have a scenario that's not covered, open an issue with a brief description (systems + the assertion you want to make). Recipes are derived from real test suites, so contributions are welcome.