Nessuna descrizione

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

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