diff options
| author | Shulhan <ms@kilabit.info> | 2019-04-21 06:01:13 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2019-04-21 06:01:13 +0700 |
| commit | 30c6475b2d94c682f87d775a1094b8720e0db7da (patch) | |
| tree | 97a05f5a4d2eeadeff6969bb3a23744744a4f60e /Makefile | |
| download | golang-id-web-30c6475b2d94c682f87d775a1094b8720e0db7da.tar.xz | |
web: situs untuk komunitas Go Indonesia
Situs ini dibuat dengan menggunakan ciigo [1], generator layanan web
statis menggunakan bahasa markup asciidoc.
Untuk saat ini situs telah aktif kembali di https://golang-id.org.
[1] github.com/shuLhan/ciigo
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e781299 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: all generate build deploy + +all: build + +generate: + go generate + +build: generate + go build ./cmd/golangid + +deploy: build + rsync ./golangid gcp-webserver:~/bin/ |
