Add metadata to WireMock/Pre-seed guides and move to guides folder
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
|
@ -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.
|
|
@ -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.
|