diff options
| author | a73x <[email protected]> | 2024-08-25 15:14:41 +0100 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-08-25 15:14:41 +0100 |
| commit | fea0ef77c8c98dfadd2f9d29804653293fd31c99 (patch) | |
| tree | 6dadd3062fc77d37e622838eb6b16a60e2774f4d /Makefile | |
| parent | 794401aaadfaa4efd91587db40439226231ff303 (diff) | |
feat: add templating
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..d791247 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: fly + +fly: + cd proxy && fly deploy + +.PHONY: content +content: + go run ./cmd/generate + +.PHONY: serve +serve: content + go run ./cmd/home |
