From ff6a894cd837370a1754bc17cda060c4bfd990e3 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Wed, 13 Aug 2025 15:04:06 +0100 Subject: updated Justfile with deployment recipes --- Justfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Justfile b/Justfile index cd0df0c..5ad58d8 100644 --- a/Justfile +++ b/Justfile @@ -18,3 +18,22 @@ logs: tail: demon tail -f dev + +deploy-frontend: build + #!/usr/bin/env bash + source prod.env + cd frontend + npm run build + npm run start + +deploy-tinyauth: + #!/usr/bin/env bash + source prod.env + podman run --rm -i \ + --name tinyauth \ + --network host \ + -e PORT=3001 \ + -e SECRET="$TINYAUTH_SECRET" \ + -e APP_URL="$TINYAUTH_APP_URL" \ + -e USERS="$TINYAUTH_USERS" \ + ghcr.io/steveiliop56/tinyauth:v3 -- cgit