feat(catalog): add product catalog APIs

This commit is contained in:
lai_hong
2026-09-13 11:17:53 +08:00
parent 63c0013076
commit 59e398fcf9
15 changed files with 655 additions and 68 deletions
+17
View File
@@ -0,0 +1,17 @@
# 仅用于本机联调。与 docker-compose.yml 一起使用:
# docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d --build
services:
app:
build:
context: .
dockerfile: docker/Dockerfile.dev
environment:
NODE_ENV: development
volumes:
# Windows 只保存源码;Node、Prisma 和 NestJS 均在 Linux 容器内运行。
- .:/app
# 避免 Windows 的 node_modules 覆盖容器内 Linux 依赖。
- wxmp_node_modules:/app/node_modules
volumes:
wxmp_node_modules: