-
Notifications
You must be signed in to change notification settings - Fork 0
/
Justfile
118 lines (89 loc) · 2.26 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# View help text
@help *recipe:
./scripts/help.nu {{ recipe }}
# View file annotated with version control information
[no-cd]
@annotate *filename:
./scripts/annotate.nu {{ filename }}
# Check flake and run pre-commit hooks
@check *args:
./scripts/check.nu {{ args }}
alias deps := dependencies
# List dependencies
@dependencies *args:
./scripts/dependencies.nu {{ args }}
# View the diff between environments
@diff-env *args:
./scripts/diff-env.nu {{ args }}
# Manage environments
@environment *args:
./scripts/environment.nu {{ args }}
# Search available `just` recipes
[no-cd]
[no-exit-message]
@find-recipe *search_term:
./scripts/find-recipe.nu {{ search_term }}
# View project history
[no-cd]
@history *args:
./scripts/history.nu {{ args }}
# Initialize direnv environment
@init *help:
./scripts/init.nu {{ help }}
# View issues
@issue *args:
./scripts/issue.nu {{ args }}
# Create a new release
@release *preview:
./scripts/release.nu {{ preview }}
# View remote repository
@remote *web:
./scripts/remote.nu {{ web }}
# View repository analytics
@stats *help:
./scripts/stats.nu {{ help }}
# Run tests
@test *args:
./scripts/test.nu {{ args }}
# Update dependencies
@update *help:
./scripts/update.nu {{ help }}
# View the source code for a recipe
[no-cd]
@view-source *recipe:
./scripts/view-source.nu {{ recipe }}
mod agni "just/agni.just"
# Alias for `agni example`
@example *args:
just agni example {{ args }}
mod python "just/python.just"
# Alias for `python add`
@add *args:
just python add {{ args }}
# Alias for `python build`
@build *args:
just python build {{ args }}
# Alias for `python clean`
@clean *args:
just python clean {{ args }}
# Alias for `python coverage`
@coverage *args:
just python coverage {{ args }}
# Alias for `python install`
@install *args:
just python install {{ args }}
# Alias for `python profile`
@profile *args:
just python profile {{ args }}
# Alias for `python remove`
@remove *args:
just python remove {{ args }}
# Alias for `python run`
@run *args:
just python run {{ args }}
# Alias for `python shell`
@shell *args:
just python shell {{ args }}
# Alias for `python update-deps`
@update-deps *args:
just python update-deps {{ args }}