# ============================================================ # GoFrame CLI 工具配置(仅开发环境使用,gf 命令读取) # 文档:https://goframe.org/docs/cli # ============================================================ gfcli: gen: dao: # 生成 dao/entity/do 的数据库连接 # 用法:cd tool-api && gf gen dao # 注意:与 manifest/config/config.yaml 的数据库保持同一套(当前:root/root@nl_toolbox) - link: "mysql:root:root@tcp(127.0.0.1:3306)/nl_toolbox" # 实体字段附带数据库字段描述注释 descriptionTag: true # 只生成指定表(逗号分隔,留空 = 全部表),如 "users,tools" # tables: "" # 去除表名公共前缀,如表名 tb_users 生成 Users 时配 "tb_" # removePrefix: "" docker: # docker 镜像构建参数: # -a 架构(amd64/arm64) -s 系统(linux) -p 临时目录前缀 -ew 排除文件 build: "-a amd64 -s linux -p temp -ew" # 镜像 tag 前缀(推送到私有仓库时改成自己的 registry) tagPrefixes: - my.image.pub/my-app