Add metadata to WireMock/Pre-seed guides and move to guides folder

This commit is contained in:
Michael Irwin 2024-10-23 17:14:29 -04:00
parent 963bceee56
commit 655927cb59
No known key found for this signature in database
6 changed files with 14 additions and 4 deletions

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,8 +1,13 @@
---
description: Pre-seeding database with schema and data at startup for development environment
keywords: Pre-seeding, database, postgres, container-supported development
title: Pre-seeding database with schema and data at startup for development environment
linktitle: Pre-seeding database
description: &desc Pre-seeding database with schema and data at startup for development environment
keywords: Pre-seeding, database, postgres, container-supported development
summary: *desc
levels: [intermediate]
subjects: [databases]
params:
time: 20 minutes
---
Pre-seeding databases with essential data and schema during local development is a common practice to enhance the development and testing workflow. By simulating real-world scenarios, this practice helps catch frontend issues early, ensures alignment between Database Administrators and Software Engineers, and facilitates smoother collaboration. Pre-seeding offers benefits like confident deployments, consistency across environments, and early issue detection, ultimately improving the overall development process.

View File

@ -1,8 +1,13 @@
---
description: Mocking API services in development and testing with WireMock
keywords: WireMock, container-supported development
title: Mocking API services in development and testing with WireMock
description: &desc Mocking API services in development and testing with WireMock
keywords: WireMock, container-supported development
linktitle: Mocking API services with WireMock
summary: *desc
levels: [intermediate]
subjects: [distributed-systems]
params:
time: 20 minutes
---
During local development and testing, it's quite common to encounter situations where your app is dependent on the remote APIs. Network issues, rate limits, or even downtime of the API provider can halt your progress. This can significantly hinder your productivity and make testing more challenging. This is where WireMock comes into play.