mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-06 10:55:44 +10:00
31 lines
812 B
JSON
31 lines
812 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"PAPERSDL_ENABLED": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["SAVE_PAPERSDL", "USE_PAPERSDL"],
|
|
"description": "Enable paper downloading with papers-dl"
|
|
},
|
|
"PAPERSDL_BINARY": {
|
|
"type": "string",
|
|
"default": "papers-dl",
|
|
"description": "Path to papers-dl binary"
|
|
},
|
|
"PAPERSDL_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 300,
|
|
"minimum": 30,
|
|
"x-fallback": "TIMEOUT",
|
|
"description": "Timeout for paper downloads in seconds"
|
|
},
|
|
"PAPERSDL_EXTRA_ARGS": {
|
|
"type": "string",
|
|
"default": "",
|
|
"description": "Extra arguments for papers-dl (space-separated)"
|
|
}
|
|
}
|
|
}
|