1.告警邮箱设置
保存后会自动将配置信息保存在fat_configs.toml 文件中;
可能出现问题:报错 550和 anth 问题,说明你的邮箱配置有问题(密码或者授权码);
2.生成数据表curd
执行结果报错 exec: "gormgen": executable file not found in %PATH%
字面意思:gormgen 在环境变量path中 没有找到,将gormgen 安装路径添加到path 中,即可。
如果不生效,记得,重启goland, 和重新执行go run main.go 命令。
3.生成控制器方法
报错:
2023/10/13 17:36:12 parsing package: ./internal/api/user: open ./internal/api/user/handler.go: The system cannot find the path specified.
exit status 1
解决方法:在order 目录中,新增handler.go 文件,定义相关接口。
https://www.yuque.com/xinliangnote/go-gin-api/pmfdon