-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmm.lifecycle.json
45 lines (45 loc) · 1.07 KB
/
mm.lifecycle.json
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
{
"schema": "https://requirements.metamodule.org/1.0.1",
"problem": {
"description": "generate data to excel report about all invoices in selected folder"
},
"solution": {
"description": "convert PDF file to json data over script based on tensorflow"
},
"input": {
"type": "file",
"format": "pdf",
"handle": "path"
},
"output": {
"type": "file",
"format": "json",
"handle": "path"
},
"function": {
"description": "get file as input and generate output json file",
"input": "file path to pdf",
"output": "file path to generated json"
},
"test": {
"description": "convert PDF file to json data",
"command": "pdf2json.sh",
"input": "/home/json/input.pdf",
"output": "/home/pdf/output.json"
},
"environment": {
"nodejs": "17",
"mariadb": "5",
"docker": "https://hub.docker.com/r/andrewmackrodt/nodejs"
},
"config": {
"username": "test",
"path": "/home/test",
"data": "storage",
"settings": ".config"
},
"monitoring": {
"latency": "1ms",
"availability": "90%"
}
}