-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.doql.css
More file actions
102 lines (60 loc) · 1 KB
/
app.doql.css
File metadata and controls
102 lines (60 loc) · 1 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
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
app {
name: "taskfile";
version: "0.3.88";
}
entity[name="RunTaskRequest"] {
}
entity[name="ValidateRequest"] {
}
entity[name="TaskInfo"] {
}
entity[name="EnvironmentInfo"] {
}
entity[name="EnvironmentGroupInfo"] {
}
entity[name="PlatformInfo"] {
}
entity[name="FunctionInfo"] {
}
entity[name="PipelineStageInfo"] {
}
entity[name="TaskfileInfo"] {
}
entity[name="ValidationResult"] {
}
entity[name="CommandOutput"] {
}
entity[name="TaskRunResult"] {
}
entity[name="RunResult"] {
}
entity[name="HealthResponse"] {
}
entity[name="DoctorIssueInfo"] {
}
entity[name="DoctorRequest"] {
}
entity[name="DoctorResponse"] {
}
entity[name="ErrorResponse"] {
}
interface[type="api"] {
type: rest;
framework: fastapi;
}
interface[type="cli"] {
framework: click;
}
interface[type="cli"] page[name="taskfile"] {
}
deploy {
target: makefile;
}
environment[name="local"] {
runtime: makefile;
env_file: ".env";
}
environment[name="prod"] {
runtime: makefile;
env_file: ".env.prod";
}