Move sample service schemas under schemas
This commit is contained in:
parent
2f69bff301
commit
827a504bfc
6 changed files with 18 additions and 6 deletions
|
|
@ -23,3 +23,6 @@ dew infra down postgresql-18
|
||||||
```
|
```
|
||||||
|
|
||||||
The named volume is intentionally retained after stopping the service.
|
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`.
|
||||||
|
|
|
||||||
|
|
@ -13,5 +13,5 @@ container:
|
||||||
profiles_dir: dew_postgresql_18.profiles.d
|
profiles_dir: dew_postgresql_18.profiles.d
|
||||||
|
|
||||||
schemas:
|
schemas:
|
||||||
configure: configure.schema.json
|
configure: schemas/configure.schema.json
|
||||||
init: init.schema.json
|
init: schemas/init.schema.json
|
||||||
|
|
|
||||||
8
.project/kanban/done/DEW-0032.md
Normal file
8
.project/kanban/done/DEW-0032.md
Normal 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.
|
||||||
|
|
@ -18,8 +18,9 @@ workflows.
|
||||||
├── app_postgres.container
|
├── app_postgres.container
|
||||||
├── app_postgres.container.d/
|
├── app_postgres.container.d/
|
||||||
├── app_postgres.profiles.d/
|
├── app_postgres.profiles.d/
|
||||||
├── configure.schema.json
|
├── schemas/
|
||||||
├── init.schema.json
|
│ ├── configure.schema.json
|
||||||
|
│ └── init.schema.json
|
||||||
└── config/
|
└── config/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -41,8 +42,8 @@ container:
|
||||||
profiles_dir: app_postgres.profiles.d
|
profiles_dir: app_postgres.profiles.d
|
||||||
|
|
||||||
schemas:
|
schemas:
|
||||||
configure: configure.schema.json
|
configure: schemas/configure.schema.json
|
||||||
init: init.schema.json
|
init: schemas/init.schema.json
|
||||||
```
|
```
|
||||||
|
|
||||||
The package-level schema for this file is
|
The package-level schema for this file is
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue