-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
47 lines (34 loc) · 1.35 KB
/
justfile
File metadata and controls
47 lines (34 loc) · 1.35 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
47
import? 'justfile.project'
import? 'justfile.local'
default:
@just --list
help:
@just --list
# ── Setup ─────────────────────────────────────────────────────────────────────
[group('setup')]
setup:
@echo "[INFO] Setup"
@just setup-devcontainer
[group('setup')]
setup-devcontainer:
@.devcontainer/scripts/setup-devcontainer.sh
# ── Auth ──────────────────────────────────────────────────────────────────────
[group('auth')]
gh-login:
@gh auth login
[group('auth')]
claude-login:
@claude auth login
[group('auth')]
opencode-login:
@opencode auth login
# ── Tools ─────────────────────────────────────────────────────────────────────
[group('tools')]
pre-commit-run:
@pre-commit run --all-files
[group('tools')]
vscode-dev-setup-cli *args:
@./vscode-dev-setup-cli.sh {{ args }}
[group('tools')]
scaffold-ai-cli *args:
@curl -fsSL https://raw.githubusercontent.com/FabrizioCafolla/scaffold-ai/main/cli.sh | bash -s -- {{args}}