Aucune description

dcsunny 05527f0e0c 更新kratos il y a 4 ans
api f9e99750fc 调整项目生成的模板 il y a 4 ans
cmd f9e99750fc 调整项目生成的模板 il y a 4 ans
configs 478127fa4e init il y a 4 ans
internal f9e99750fc 调整项目生成的模板 il y a 4 ans
.gitignore 478127fa4e init il y a 4 ans
Dockerfile bbd4113cf0 新增docker il y a 4 ans
LICENSE 478127fa4e init il y a 4 ans
Makefile f9e99750fc 调整项目生成的模板 il y a 4 ans
README.md 478127fa4e init il y a 4 ans
build.sh 139e3c081f 更新构建包 il y a 4 ans
generate.go 478127fa4e init il y a 4 ans
go.mod 05527f0e0c 更新kratos il y a 4 ans
go.sum 05527f0e0c 更新kratos il y a 4 ans
start.sh 478127fa4e init il y a 4 ans

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