mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 12:32:21 +00:00
11 lines
209 B
Makefile
11 lines
209 B
Makefile
|
|
default:
|
|
openssl genrsa -out server.key 2048
|
|
openssl req -new -x509 -days 3650 \
|
|
-subj "/C=GB/L=China/O=gobook/CN=server.grpc.io" \
|
|
-key server.key -out server.crt
|
|
|
|
clean:
|
|
-rm *.key *.crt *.csr *.srl
|
|
|