mod taskfile and gitignore

This commit is contained in:
Bartal Læarsson
2026-06-25 12:27:15 +01:00
parent 3a72337e80
commit ccceafc293
2 changed files with 9 additions and 8 deletions
+1
View File
@@ -0,0 +1 @@
bin/
+8 -8
View File
@@ -16,8 +16,8 @@ vars:
sh: if [ -f build/words.txt ]; then awk 'BEGIN{srand()} /^[[:lower:]]+$/ && length($0) >= 4 && length($0) <= 10 { words[++n]=$0 } END { if (n < 1) { print "word-list"; exit } print words[int(rand()*n)+1] "-" words[int(rand()*n)+1] }' build/words.txt; else echo word-list; fi
VERSION_STR: "version [{{.SHORT_SHA}}-{{.BRANCH}}/{{.RANDOM_WORDS}}]. git is [{{.DIRTY}}]."
LD_FLAGS: "-X '{{.PKG}}.Version={{.VERSION_STR}}'"
BINARY_API: "{{.BINARY_DIR}}/abuse-registration-poc"
DEV_BINARY_API: "{{.DEV_BINARY_DIR}}/abuse-registration-poc/"
BINARY_API: "{{.BINARY_DIR}}/go-api"
DEV_BINARY_API: "{{.DEV_BINARY_DIR}}/go-api/"
tasks:
@@ -47,7 +47,7 @@ tasks:
- task dev-clean-api
- mkdir -p {{.DEV_BINARY_API}}
- echo "building DEV {{.DEV_BINARY_API}} with version {{.VERSION_STR}}"
- CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "{{.LD_FLAGS}}" -o {{.DEV_BINARY_API}}/abuse-registration-poc ./cmd/api
- CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "{{.LD_FLAGS}}" -o {{.DEV_BINARY_API}}/go-api ./cmd/api
# ── Deploy individual ──────────────────────────────────────────────────────
@@ -55,9 +55,9 @@ tasks:
desc: build api, create remote dirs, and deploy api to remote vps
deps: [build-api]
cmds:
- ssh {{.REMOTE_MACHINE}} "mkdir -p /srv/abuse-registration-poc && rm -f /srv/abuse-registration-poc/abuse-registration-poc"
- rsync -avz --delete {{.BINARY_API}} {{.REMOTE_MACHINE}}:/srv/abuse-registration-poc/
- ssh -t {{.REMOTE_MACHINE}} "sudo systemctl restart abuse-registration-poc"
- ssh {{.REMOTE_MACHINE}} "rm -f /srv/go-api/go-api"
- rsync -avz --delete {{.BINARY_API}} {{.REMOTE_MACHINE}}:/srv/go-api/
- ssh -t {{.REMOTE_MACHINE}} "sudo systemctl restart go-api"
# ── DEV START individual ──────────────────────────────────────────────────
@@ -67,7 +67,7 @@ tasks:
cmds:
- "rm -rf *"
- task dev-build-api
- "./abuse-registration-poc"
- "./go-api"
run:
desc: run the POC API locally on :8080 by default
@@ -97,4 +97,4 @@ tasks:
dev-clean-api:
cmds:
- rm -f {{.DEV_BINARY_API}}/abuse-registration-poc
- rm -f {{.DEV_BINARY_API}}/go-api