bmc_hub/app/modules/webshop/module.json
Christian 3dcd04396e feat(webshop): Initial implementation of webshop module with views, migrations, and templates
- Added views for webshop admin interface using FastAPI and Jinja2 templates.
- Created initial SQL migration for webshop configurations, products, orders, and order items.
- Defined module metadata in module.json for webshop.
- Implemented HTML template for the webshop index page.
- Documented frontend requirements and API contracts in WEBSHOP_FRONTEND_PROMPT.md.
- Introduced scripts for generating conversation summaries and testing Whisper capabilities.
2026-01-25 03:29:28 +01:00

19 lines
369 B
JSON

{
"name": "webshop",
"version": "1.0.0",
"description": "Webshop administration og konfiguration",
"author": "BMC Networks",
"enabled": true,
"dependencies": [],
"table_prefix": "webshop_",
"api_prefix": "/api/v1/webshop",
"tags": [
"Webshop"
],
"config": {
"safety_switches": {
"read_only": false,
"dry_run": false
}
}
}