-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.doql.less
More file actions
59 lines (47 loc) · 917 Bytes
/
app.doql.less
File metadata and controls
59 lines (47 loc) · 917 Bytes
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
// LESS format — define @variables here as needed
// Generated by sumd for code2llm
app {
name: code2llm;
version: 0.5.146;
}
interface[type="cli"] {
framework: click;
}
workflow[name="install"] {
trigger: manual;
step-1: run cmd=pip install -e .;
}
workflow[name="dev"] {
trigger: manual;
step-1: run cmd=pip install -e ".[dev]";
}
workflow[name="build"] {
trigger: manual;
step-1: run cmd=python -m build;
}
workflow[name="test"] {
trigger: manual;
step-1: run cmd=pytest -q;
}
workflow[name="lint"] {
trigger: manual;
step-1: run cmd=ruff check .;
}
workflow[name="fmt"] {
trigger: manual;
step-1: run cmd=ruff format .;
}
workflow[name="clean"] {
trigger: manual;
step-1: run cmd=rm -rf build/ dist/ *.egg-info;
}
workflow[name="help"] {
trigger: manual;
step-1: run cmd=task --list;
}
deploy {
target: pip;
}
environment[name="local"] {
runtime: python;
}