fix/makefile #9
2
Makefile
2
Makefile
|
@ -22,7 +22,7 @@ fmt: # 格式優化
|
||||||
.PHONY: gen-rpc
|
.PHONY: gen-rpc
|
||||||
gen-rpc: # 建立 rpc code
|
gen-rpc: # 建立 rpc code
|
||||||
$(GO_CTL_NAME) rpc protoc ./generate/protobuf/notification.proto -m --style=$(GO_ZERO_STYLE) --go_out=./gen_result/pb --go-grpc_out=./gen_result/pb --zrpc_out=.
|
$(GO_CTL_NAME) rpc protoc ./generate/protobuf/notification.proto -m --style=$(GO_ZERO_STYLE) --go_out=./gen_result/pb --go-grpc_out=./gen_result/pb --zrpc_out=.
|
||||||
copy ./etc/service.yaml ./etc/service.example.yaml
|
cp ./etc/notification.yaml ./etc/notification.example.yaml
|
||||||
|
|||||||
go mod tidy
|
go mod tidy
|
||||||
@echo "Generate core-api files successfully"
|
@echo "Generate core-api files successfully"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
這裡再 gen-rpc 原生產生整個資料夾時,時會自動生成 notification.yaml 在 etc 當中
但這邊牽扯到我不想直接把 notification.yaml 上傳到 git. 因為是設定的關係
所以我會想要手動再做一個 example 來只是說有這個東西,且格式怎麼寫,比較偏向不直接把他上傳
所以產生的時候才會想說把它變成
copy ./etc/service.yaml ./etc/service.example.yaml
這邊有一個更正
copy ./etc/notification.yaml ./etc/notification.example.yaml
另外當 config 有變時,example 檔案應該也同時新增或刪除才對
所以這裡的功用比較像是直接複製一個範例檔案,而不是起用的時後讓他可以有這個檔案
ok 那為什麼是用
copy
不是cp
?