-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
39 lines (39 loc) · 1.02 KB
/
config.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
{
"actions": [
{
"name": "Autotag Paddle",
"desc": "A Docker image that automatically tags PDF files using PDFix SDK and Paddle-OCR",
"version": {
"major": 1,
"minor": 0
},
"icon": "add_photo_alternate",
"category": "Tags",
"configurations": [
{
"program": "docker run --platform linux/amd64 -v \"${working_directory}:/data\" -w /data --rm pdfix/autotag-paddle:latest --name \"${license_name}\" --key \"${license_key}\" tag -i \"${input_pdf}\" -o \"${output_pdf}\"",
"name": "Autotag PDF",
"desc": "Autotag PDF"
}
],
"args": [
{
"name": "input_pdf",
"desc": "Input PDF file",
"flags": 2,
"type": "file_path",
"ext": "pdf",
"value": ""
},
{
"name": "output_pdf",
"desc": "Output PDF file",
"flags": 4,
"type": "file_path",
"ext": "pdf",
"value": ""
}
]
}
]
}