-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
46 lines (36 loc) · 1.17 KB
/
justfile
File metadata and controls
46 lines (36 loc) · 1.17 KB
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
# Use `just <recipe>` to run a recipe
# https://just.systems/man/en/
import ".shared/common.just"
# 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:
-just term-kill
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
# Open the browser with the app
[group('dev')]
open-browser:
xdg-open http://localhost:8000