-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.doql.css
More file actions
73 lines (59 loc) · 1.23 KB
/
app.doql.css
File metadata and controls
73 lines (59 loc) · 1.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
app {
name: "code2docs";
version: "3.0.27";
}
interface[type="cli"] {
framework: click;
}
interface[type="cli"] page[name="code2docs"] {
}
workflow[name="install"] {
trigger: "manual";
step-1: run cmd=pip install -e .[dev];
}
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="build"] {
trigger: "manual";
step-1: run cmd=python -m build;
}
workflow[name="health"] {
trigger: "manual";
step-1: run cmd=docker compose ps;
step-2: run cmd=docker compose exec app echo "Health check passed";
}
workflow[name="clean"] {
trigger: "manual";
step-1: run cmd=rm -rf build/ dist/ *.egg-info;
}
deploy {
target: docker-compose;
}
environment[name="local"] {
runtime: docker-compose;
env_file: ".env";
}
workflow[name="all"] {
trigger: "manual";
step-1: run cmd=taskfile run install;
step-2: run cmd=taskfile run lint;
step-3: run cmd=taskfile run test;
}
workflow[name="help"] {
trigger: "manual";
step-1: run cmd=taskfile list;
}
workflow[name="format"] {
trigger: "manual";
step-1: run cmd=ruff format .;
}