-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
justfile
48 lines (39 loc) · 1.35 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Use `just <recipe>` to run a recipe
# https://just.systems/man/en/
# By default, run the `--list` command
default:
@just --list
# Variables
transferDir := `if [ -d "$HOME/NextcloudPrivate/Transfer" ]; then echo "$HOME/NextcloudPrivate/Transfer"; else echo "$HOME/Nextcloud/Transfer"; fi`
sessionName := "qownnotes-api"
# Open a terminal with the qownnotes-api session
[group('dev')]
term:
zellij --layout term.kdl attach {{ sessionName }} -c
# Kill the qownnotes-api session
[group('dev')]
term-kill:
zellij delete-session {{ sessionName }} -f
# Clear the cache
[group('dev')]
clear-cache:
rm -rf var/cache/*
# Apply the patch to the qownnotes-api repository
[group('patch')]
git-apply-patch:
git apply {{ transferDir }}/{{ sessionName }}.patch
# Create a patch from the staged changes in the qownnotes-api repository
[group('patch')]
@git-create-patch:
echo "transferDir: {{ transferDir }}"
git diff --no-ext-diff --staged --binary > {{ transferDir }}/{{ sessionName }}.patch
ls -l1t {{ transferDir }}/ | head -2
# Format all justfiles
[group('linter')]
just-format:
#!/usr/bin/env bash
# Find all files named "justfile" recursively and run just --fmt --unstable on them
find . -type f -name "justfile" -print0 | while IFS= read -r -d '' file; do
echo "Formatting $file"
just --fmt --unstable -f "$file"
done