diff options
| author | Shulhan <m.shulhan@gmail.com> | 2023-10-09 01:00:49 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2026-04-15 01:18:20 +0700 |
| commit | e122483a7eb0ea0da07ed6d58ce1c8756c6f2d48 (patch) | |
| tree | d83cf0fd93e409cc1df5c0323f68dc644c35ea5a | |
| parent | d5b97942f197e6fdae31ecbe1f187a02f92a1ce7 (diff) | |
| download | go-x-website-e122483a7eb0ea0da07ed6d58ce1c8756c6f2d48.tar.xz | |
[DO-NOT-MERGE] all: add Makefile for common tasks
Instead of memorizing how to do X, document it in Makefile.
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..079a2b94 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/golangorg diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..eccde565 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: dev +dev: + go run ./cmd/golangorg -http=127.0.0.1:6061 + +.PHONY: install +install: + go install ./cmd/golangorg |
