-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
31 lines (31 loc) · 1.08 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
{
"version": "v0.0.0",
"actions": [
{
"name": "Autotag Textract",
"desc": "Automatically tag PDF using AWS Textract",
"version": "v0.0.0",
"icon": "autotag_textract",
"category": "Metadata",
"program": "docker run --platform -v ${working_directory}:/data -v \"~/.aws:~/.aws\" -w /data --rm pdfix/autotag-textract:latest --name \"${license_name}\" --key \"${license_key}\" autotag -i \"/data/${input_pdf}\" -o \"/data/${output_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": ""
}
]
}
]
}