mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-04 06:47:57 +10:00
25 lines
610 B
JSON
25 lines
610 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"RIPGREP_BINARY": {
|
|
"type": "string",
|
|
"default": "rg",
|
|
"description": "Path to ripgrep binary"
|
|
},
|
|
"RIPGREP_IGNORE_EXTENSIONS": {
|
|
"type": "string",
|
|
"default": "css,js,orig,svg",
|
|
"description": "Comma-separated file extensions to ignore"
|
|
},
|
|
"SEARCH_BACKEND_TIMEOUT": {
|
|
"type": "integer",
|
|
"default": 90,
|
|
"minimum": 5,
|
|
"x-fallback": "TIMEOUT",
|
|
"description": "Search timeout in seconds"
|
|
}
|
|
}
|
|
}
|