-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
54 lines (43 loc) · 1.46 KB
/
Taskfile.yml
File metadata and controls
54 lines (43 loc) · 1.46 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
48
49
50
51
52
53
54
version: "3"
includes:
backend:
taskfile: backend/Taskfile.yml
dir: backend
frontend:
taskfile: frontend/Taskfile.yml
dir: frontend
tasks:
# ── Quality ──────────────────────────────────────────
check:
desc: Run all quality checks (backend + frontend)
cmds:
- task: backend:check
- task: frontend:check
# ── Beads ────────────────────────────────────────────
bd:ready:
desc: Show issues ready to work on
cmd: bd ready
bd:stats:
desc: Project statistics
cmd: bd stats
bd:sync:
desc: Sync beads with git
cmd: bd sync
# ── Workflow ─────────────────────────────────────────
done:
desc: Session completion checklist
cmds:
- task: check
- git status
- bd sync
- echo "Ready to commit and push"
# ── Setup ────────────────────────────────────────────
setup:
desc: Initial project setup (one-time)
cmds:
- pre-commit install
- pre-commit install --hook-type commit-msg
- echo "Pre-commit hooks installed"
- task: backend:setup
- task: frontend:setup
- echo "Project ready"