Skip to content

Commit

Permalink
Merge pull request #21196 from mikesir87/add-links-to-container-suppo…
Browse files Browse the repository at this point in the history
…rted-guide

Add links to other guides in container-supported development guide
  • Loading branch information
dvdksn authored Dec 18, 2024
2 parents 6a97d65 + 29a1c25 commit a8e5875
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions content/guides/container-supported-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ With container-supported development, it's easy to run databases locally. In thi

{{< youtube-embed VieWeXOwKLU >}}

> [!TIP]
>
> Learn more about running databases in containers in the [Use containerized databases](/guides/databases.md) guide.
### Demo: mocking API endpoints

Many APIs require data from other data endpoints. In development, this adds complexities such as the sharing of credentials, uptime/availability, and rate limiting. Instead of relying on those services directly, your application can interact with a mock API server.
Expand All @@ -59,6 +63,10 @@ This demo will demonstrate how using WireMock can make it easy to develop and te

{{< youtube-embed VXSmX6f8vo0 >}}

> [!TIP]
>
> Learn more about using WireMock to mock API in the [Mocking API services with WireMock](/guides/wiremock.md) guide.
### Demo: developing the cloud locally

When developing apps, it's often easier to outsource aspects of the application to cloud services, such as Amazon S3. However, connecting to those services in local development introduces IAM policies, networking constraints, and provisioning complications. While these requirements are important in a production setting, they complicate development environments significantly.
Expand All @@ -67,6 +75,10 @@ With container-supported development, you can run local instances of these servi

{{< youtube-embed JtwUMvR5xlY >}}

> [!TIP]
>
> Learn more about using LocalStack in the [Develop and test AWS Cloud applications using LocalStack](/guides/localstack.md) guide.
### Demo: adding additional debug and troubleshooting tools

Once you start using containers in your development environment, it becomes much easier to add additional containers to visualize the contents of the databases or message queues, seed document stores, or event publishers. In this demo, you'll see a few of these examples, as well as how you can connect multiple containers together to make testing even easier.
Expand Down

0 comments on commit a8e5875

Please sign in to comment.