mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Waiting to run
Build Debian package / build (push) Waiting to run
Deploy static content to Pages / deploy (push) Waiting to run
Build Homebrew package / build (push) Waiting to run
Build GitHub Pages website / build (push) Waiting to run
Build GitHub Pages website / deploy (push) Blocked by required conditions
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Run tests / python_tests (ubuntu-22.04, 3.13) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run
26 lines
813 B
JSON
26 lines
813 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"SEARCH_BACKEND_SQLITE_DB": {
|
|
"type": "string",
|
|
"default": "search.sqlite3",
|
|
"x-aliases": ["SQLITEFTS_DB"],
|
|
"description": "SQLite FTS database filename"
|
|
},
|
|
"SEARCH_BACKEND_SQLITE_SEPARATE_DATABASE": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"x-aliases": ["FTS_SEPARATE_DATABASE", "SQLITEFTS_SEPARATE_DATABASE"],
|
|
"description": "Use separate database file for FTS index"
|
|
},
|
|
"SEARCH_BACKEND_SQLITE_TOKENIZERS": {
|
|
"type": "string",
|
|
"default": "porter unicode61 remove_diacritics 2",
|
|
"x-aliases": ["FTS_TOKENIZERS", "SQLITEFTS_TOKENIZERS"],
|
|
"description": "FTS5 tokenizer configuration"
|
|
}
|
|
}
|
|
}
|