aboutsummaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-01-14 08:43:04 +0000
committerFuwn <[email protected]>2026-01-14 08:43:04 +0000
commit542c7ab4715ead8894bdfb5922b571ec1def9e5e (patch)
treecdff9b23b2ab01381e98fdb618f2a8c749ab245d /justfile
parentchore(flake.nix): Bump version (diff)
downloadgigi-main.tar.xz
gigi-main.zip
chore(justfile): Add justfile for convenienceHEADmain
Diffstat (limited to 'justfile')
-rw-r--r--justfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..af71fbc
--- /dev/null
+++ b/justfile
@@ -0,0 +1,14 @@
+name := "gigi"
+
+push tag="latest":
+ docker buildx build \
+ --platform linux/amd64,linux/arm64 \
+ -t fuwn/{{ name }}:{{ tag }} \
+ --push \
+ .
+
+build:
+ go build
+
+run:
+ go run {{ name }}.go