From 37da5940ae054be52cadbc48de1a2bfee2a848f4 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Wed, 18 Feb 2026 23:35:21 +0300 Subject: [PATCH] add justfile --- Justfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Justfile diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..0949a22 --- /dev/null +++ b/Justfile @@ -0,0 +1,5 @@ +build app: + docker build -t git.zatch.ru/tsivinsky/archivelocal-{{app}}:latest {{ if app == "api" {"."} else {"./web"} }} + +push app: + docker push git.zatch.ru/tsivinsky/archivelocal-{{app}}:latest