This documentation is available to agents as Markdown at https://docs.synthesized.io/tdk/latest/user_guide/070_integrations/external_tools.md. For the complete documentation index, see llms.txt.

External Tools

Integrate the platform with development and testing tools including GitHub Actions, Testcontainers, and AWS License Manager.

What You’ll Find Here

  • Testcontainers - Integration testing with Testcontainers

  • AWS License Manager - License tracking on AWS

  • Other Tools - Additional integrations

Testcontainers

Use the platform with Testcontainers for integration tests:

@Container
PostgreSQLContainer<?> postgres = new PostgreSQLContainer<>("postgres:15")
    .withInitScript("tdk-generated-data.sql");

Where to Start