Без опису

dcsunny f674da2e95 feat: 更新相关包 1 рік тому
api f674da2e95 feat: 更新相关包 1 рік тому
cmd fa72db8274 配置改为指针 3 роки тому
configs 478127fa4e init 4 роки тому
internal f674da2e95 feat: 更新相关包 1 рік тому
.gitignore 478127fa4e init 4 роки тому
Dockerfile bbd4113cf0 新增docker 4 роки тому
Jenkinsfile a74f75a54e update go.mod 3 роки тому
JenkinsfilePro a74f75a54e update go.mod 3 роки тому
LICENSE 478127fa4e init 4 роки тому
Makefile b9a0be791c 将name改成小写 4 роки тому
README.md 478127fa4e init 4 роки тому
build.sh fa72db8274 配置改为指针 3 роки тому
generate.go 478127fa4e init 4 роки тому
go.mod f674da2e95 feat: 更新相关包 1 рік тому
go.sum f674da2e95 feat: 更新相关包 1 рік тому
start.sh 478127fa4e init 4 роки тому

README.md

Kratos Project Template

Install Kratos

go get -u github.com/go-kratos/kratos/cmd/kratos/v2@latest

Create a service

# create a template project
kratos new helloworld

cd helloworld
# Add a proto template
kratos proto add api/helloworld/helloworld.proto
# Generate the source code of service by proto file
kratos proto server api/helloworld/helloworld.proto -t internal/service

go generate ./...
go build -o ./bin/ ./...
./bin/helloworld -conf ./configs

Automated Initialization (wire)

# install wire
go get github.com/google/wire/cmd/wire

# generate wire
cd cmd/server
wire