From 4af66f418b6837b6441b4e8eaf2d8ede585238b9 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Mon, 11 Aug 2025 11:51:39 +0100 Subject: snapshot --- Justfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Justfile (limited to 'Justfile') diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..cd0df0c --- /dev/null +++ b/Justfile @@ -0,0 +1,20 @@ +_default: + just --list + +build: + cargo build --release --target-dir target/ + +dev: + demon run tinyauth ./tinyauth.sh + cd frontend && demon run dev -- npm run dev + +stop: + demon stop tinyauth + demon stop dev + +logs: + demon cat tinyauth | tail -n 100 + demon cat dev | tail -n 100 + +tail: + demon tail -f dev -- cgit