summaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-08-11 11:51:39 +0100
committerdiogo464 <[email protected]>2025-08-11 11:51:39 +0100
commit4af66f418b6837b6441b4e8eaf2d8ede585238b9 (patch)
tree34a4e913a2848515166b2ac0489794419a33bfcc /Justfile
parent0d3488a3811c8d58bd570af64cc29840df9ba439 (diff)
snapshot
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Justfile b/Justfile
new file mode 100644
index 0000000..cd0df0c
--- /dev/null
+++ b/Justfile
@@ -0,0 +1,20 @@
1_default:
2 just --list
3
4build:
5 cargo build --release --target-dir target/
6
7dev:
8 demon run tinyauth ./tinyauth.sh
9 cd frontend && demon run dev -- npm run dev
10
11stop:
12 demon stop tinyauth
13 demon stop dev
14
15logs:
16 demon cat tinyauth | tail -n 100
17 demon cat dev | tail -n 100
18
19tail:
20 demon tail -f dev