Move sample service schemas under schemas

This commit is contained in:
Chris Hendrickson 2026-05-04 23:38:55 -04:00
parent 2f69bff301
commit 827a504bfc
6 changed files with 18 additions and 6 deletions

View file

@ -23,3 +23,6 @@ dew infra down postgresql-18
```
The named volume is intentionally retained after stopping the service.
Service-specific configure and init schemas live under `schemas/` and are
referenced from `manifest.yaml`.

View file

@ -13,5 +13,5 @@ container:
profiles_dir: dew_postgresql_18.profiles.d
schemas:
configure: configure.schema.json
init: init.schema.json
configure: schemas/configure.schema.json
init: schemas/init.schema.json

View file

@ -0,0 +1,8 @@
---
id: DEW-0032
title: Move PostgreSQL sample schemas into service schemas directory
type: task
created: 2026-05-05T03:38:10.315750Z
---
Update the PostgreSQL 18 infra sample to store service-owned configure/init schemas under a schemas/ directory and adjust manifest references accordingly.

View file

@ -18,8 +18,9 @@ workflows.
├── app_postgres.container
├── app_postgres.container.d/
├── app_postgres.profiles.d/
├── configure.schema.json
├── init.schema.json
├── schemas/
│ ├── configure.schema.json
│ └── init.schema.json
└── config/
```
@ -41,8 +42,8 @@ container:
profiles_dir: app_postgres.profiles.d
schemas:
configure: configure.schema.json
init: init.schema.json
configure: schemas/configure.schema.json
init: schemas/init.schema.json
```
The package-level schema for this file is