almosther isolating soleprint

This commit is contained in:
buenosairesam
2025-12-24 07:10:08 -03:00
parent d62337e7ba
commit 33ee1b44cd
28 changed files with 1417 additions and 114 deletions

View File

@@ -6,16 +6,16 @@
"title": "Architecture Model",
"status": "ready",
"template": null,
"larder": {
"depot": {
"name": "arch-model",
"slug": "arch-model",
"title": "Architecture Model",
"status": "ready",
"source_template": null,
"data_path": "album/book/arch-model"
"data_path": "atlas/book/arch-model"
},
"output_larder": null,
"system": "album"
"output_depot": null,
"system": "atlas"
},
{
"name": "feature-flow",
@@ -23,16 +23,16 @@
"title": "Feature Flow Pipeline",
"status": "ready",
"template": null,
"larder": {
"depot": {
"name": "feature-flow",
"slug": "feature-flow",
"title": "Feature Flow Pipeline",
"status": "ready",
"source_template": null,
"data_path": "album/book/feature-flow"
"data_path": "atlas/book/feature-flow"
},
"output_larder": null,
"system": "album"
"output_depot": null,
"system": "atlas"
},
{
"name": "gherkin-samples",
@@ -40,16 +40,16 @@
"title": "Gherkin Samples",
"status": "ready",
"template": null,
"larder": {
"depot": {
"name": "gherkin-samples",
"slug": "gherkin-samples",
"title": "Gherkin Samples",
"status": "ready",
"source_template": null,
"data_path": "album/book/gherkin-samples"
"data_path": "atlas/book/gherkin-samples"
},
"output_larder": null,
"system": "album"
"output_depot": null,
"system": "atlas"
},
{
"name": "feature-form-samples",
@@ -61,19 +61,19 @@
"slug": "feature-form",
"title": "Feature Form Template",
"status": "ready",
"template_path": "album/template/feature-form",
"system": "album"
"template_path": "atlas/template/feature-form",
"system": "atlas"
},
"larder": {
"depot": {
"name": "feature-form",
"slug": "feature-form",
"title": "Feature Forms",
"status": "ready",
"source_template": "feature-form",
"data_path": "album/book/feature-form-samples/feature-form"
"data_path": "atlas/book/feature-form-samples/feature-form"
},
"output_larder": null,
"system": "album"
"output_depot": null,
"system": "atlas"
}
]
}

View File

@@ -6,7 +6,7 @@
"title": "Feature Forms",
"status": "ready",
"source_template": "feature-form",
"data_path": "album/book/feature-form-samples/feature-form"
"data_path": "atlas/book/feature-form-samples/feature-form"
}
]
}

View File

@@ -5,18 +5,18 @@
"slug": "turnos",
"title": "Turnos Monitor",
"status": "dev",
"system": "ward",
"system": "station",
"description": "Pipeline view of requests → turnos. Shows vet-petowner at a glance.",
"path": "ward/monitor/turnos"
"path": "station/monitor/turnos"
},
{
"name": "data_browse",
"slug": "data-browse",
"title": "Data Browse",
"status": "ready",
"system": "ward",
"description": "Quick navigation to test users and data states. Book/larder pattern with SQL mode for manual testing workflows.",
"path": "ward/monitor/data_browse"
"system": "station",
"description": "Quick navigation to test users and data states. Book/depot pattern with SQL mode for manual testing workflows.",
"path": "station/monitor/data_browse"
}
]
}

View File

@@ -1,5 +1,11 @@
{
"items": [
{"name": "pawprint-local", "slug": "pawprint-local", "title": "Pawprint Local", "status": "dev", "config_path": "deploy/pawprint-local"}
{
"name": "soleprint-local",
"slug": "soleprint-local",
"title": "Soleprint Local",
"status": "dev",
"config_path": "mainroom/soleprint"
}
]
}

View File

@@ -6,7 +6,7 @@
"title": "Feature Form Template",
"status": "ready",
"template_path": "data/template/feature-form",
"system": "album"
"system": "atlas"
}
]
}

View File

@@ -5,10 +5,10 @@
"slug": "tester",
"title": "Contract Tests",
"status": "live",
"system": "ward",
"system": "station",
"type": "app",
"description": "HTTP contract test runner with multi-environment support. Filter, run, and track tests against dev/stage/prod.",
"path": "ward/tools/tester",
"path": "station/tools/tester",
"url": "/tools/tester/"
},
{
@@ -16,33 +16,22 @@
"slug": "datagen",
"title": "Test Data Generator",
"status": "live",
"system": "ward",
"system": "station",
"type": "cli",
"description": "Generate realistic test data for Amar domain (users, pets, services) and MercadoPago API responses. Used by mock veins and test seeders.",
"path": "ward/tools/datagen",
"path": "station/tools/datagen",
"cli": "python -m datagen"
},
{
"name": "generate_test_data",
"slug": "generate-test-data",
"title": "DB Test Data Extractor",
"status": "dev",
"system": "ward",
"type": "cli",
"description": "Extract representative subsets from PostgreSQL dumps for testing/development.",
"path": "ward/tools/generate_test_data",
"cli": "python -m generate_test_data"
},
{
"name": "modelgen",
"slug": "modelgen",
"title": "Model Generator",
"status": "dev",
"system": "ward",
"status": "live",
"system": "station",
"type": "cli",
"description": "Generate platform-specific models (Pydantic, Django, Prisma) from JSON Schema.",
"path": "ward/tools/modelgen",
"cli": "python -m modelgen"
"description": "Generic model generation tool. Generates typed models (Pydantic, etc.) from config files, JSON Schema, or by extracting from existing codebases (Django, SQLAlchemy). Used by build.py and databrowse.",
"path": "station/tools/modelgen",
"cli": "python -m station.tools.modelgen"
}
]
}