Tidak Ada Deskripsi

dcsunny fa72db8274 配置改为指针 3 tahun lalu
api f9e99750fc 调整项目生成的模板 4 tahun lalu
cmd fa72db8274 配置改为指针 3 tahun lalu
configs 478127fa4e init 4 tahun lalu
internal fa72db8274 配置改为指针 3 tahun lalu
.gitignore 478127fa4e init 4 tahun lalu
Dockerfile bbd4113cf0 新增docker 4 tahun lalu
LICENSE 478127fa4e init 4 tahun lalu
Makefile b9a0be791c 将name改成小写 4 tahun lalu
README.md 478127fa4e init 4 tahun lalu
build.sh fa72db8274 配置改为指针 3 tahun lalu
generate.go 478127fa4e init 4 tahun lalu
go.mod fa72db8274 配置改为指针 3 tahun lalu
go.sum fa72db8274 配置改为指针 3 tahun lalu
start.sh 478127fa4e init 4 tahun lalu

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