youtu_ecpm/README.md

28 lines
525 B
Markdown
Raw Permalink Normal View History

2025-01-15 10:31:14 +08:00
# 部署&运行
## 运行
```shell
go env -w GOPRIVATE="gitea.youtukeji.com.cn" #设置私有仓库
go mod tidy
2025-01-14 13:09:25 +08:00
```
2025-01-15 10:31:14 +08:00
## 部署
# 开发
2025-01-14 13:09:25 +08:00
2025-01-15 18:04:40 +08:00
## 安装wire
``` shell
go install github.com/google/wire/cmd/wire@latest
```
2025-01-14 13:09:25 +08:00
## dao生成
#### 通过gentool生成,model和query目录下的文件
```shell
2025-01-18 17:56:36 +08:00
go install gorm.io/gen/tools/gentool@latest
2025-01-14 13:09:25 +08:00
gentool -dsn "root:youtu!0113@tcp(localhost:3306)/ecpm?charset=utf8&parseTime=True&loc=Local" -fieldNullable -fieldWithIndexTag -fieldWithTypeTag -withUnitTest -fieldSignable
```