10 lines
340 B
Makefile
10 lines
340 B
Makefile
|
.PHONY: gen-cert
|
||
|
|
||
|
gen-cert:
|
||
|
cfssl gencert -config certs/client-config.json -profile server -hostname weather.localdomain certs/client-csr.json | cfssljson -bare certs/out/weather
|
||
|
|
||
|
dependencies:
|
||
|
go get github.com/cloudflare/cfssl/cmd/cfssl
|
||
|
go get github.com/cloudflare/cfssl/cmd/cfssljson
|
||
|
go get github.com/cloudflare/cfssl/cmd/mkbundle
|