create-aomex 0.0.20 → 0.0.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-aomex",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "repository": "git@github.com:aomex/create-aomex.git",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,3 +30,38 @@
30
30
  ```bash
31
31
  {{packageManager}} deploy:production
32
32
  ```
33
+
34
+ ## 目录结构
35
+
36
+ ```
37
+ .
38
+ ├─ .husky/ git提交前执行的代码检测脚本
39
+ ├─ .vscode/ vscode编辑器基础设置
40
+ ├─ prisma/ 数据表结构和migrate文件
41
+ ├─ scripts/ 运维脚本
42
+ ├─ src/
43
+ ├─ commanders/ 指令控制层
44
+ ├─ configs/ 不同环境下的配置
45
+ ├─ middleware/ 中间件
46
+ ├─ routers/ 路由控制层
47
+ ├─ services/ 业务逻辑层
48
+ ├─ cli.ts 控制台服务入口
49
+ └─ web.ts http服务入口
50
+ ├─ .env 开发环境下的mysql配置
51
+ ├─ .env.integration 集成环境下的mysql配置
52
+ ├─ .env.production 生产环境下的mysql配置
53
+ ├─ .commitlintrc.yml commitlint配置
54
+ ├─ .dockerignore 打包docker镜像时忽略的文件
55
+ ├─ .eslintrc.yml eslint配置
56
+ ├─ .gitignore git忽略指定文件和目录
57
+ ├─ .prettierignore prettier忽略指定文件和目录
58
+ ├─ .prettierrc.yml prettier配置
59
+ ├─ docker-compose-integration.yml 集成环境docker部署配置
60
+ ├─ docker-compose-production.yml 生产环境docker部署配置
61
+ ├─ docker-compose.yml 本地开发docker服务配置
62
+ ├─ Dockerfile.integration 集成环境docker镜像脚本
63
+ ├─ Dockerfile.production 生产环境docker镜像脚本
64
+ ├─ package.json 第三方依赖列表
65
+ ├─ README.md 项目介绍
66
+ └─ tsconfig.json Typescript配置
67
+ ```