Files
qitongxue-api/hack/config.yaml
2026-09-17 14:42:44 +08:00

28 lines
1.1 KiB
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ============================================================
# 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