mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 14:44:18 +00:00
re-enable readability and singlefile by default now that its less noisy
This commit is contained in:
parent
15efb2d5ed
commit
b0c0a676f8
2 changed files with 3 additions and 2 deletions
|
@ -108,8 +108,8 @@ CONFIG_DEFAULTS: Dict[str, ConfigDefaultDict] = {
|
|||
'DEPENDENCY_CONFIG': {
|
||||
'USE_CURL': {'type': bool, 'default': True},
|
||||
'USE_WGET': {'type': bool, 'default': True},
|
||||
'USE_SINGLEFILE': {'type': bool, 'default': False},
|
||||
'USE_READABILITY': {'type': bool, 'default': False},
|
||||
'USE_SINGLEFILE': {'type': bool, 'default': True},
|
||||
'USE_READABILITY': {'type': bool, 'default': True},
|
||||
'USE_GIT': {'type': bool, 'default': True},
|
||||
'USE_CHROME': {'type': bool, 'default': True},
|
||||
'USE_YOUTUBEDL': {'type': bool, 'default': True},
|
||||
|
|
|
@ -12,6 +12,7 @@ from ..index import (
|
|||
patch_main_index,
|
||||
)
|
||||
from ..util import enforce_types
|
||||
from ..config import ANSI
|
||||
from ..logging_util import (
|
||||
log_archiving_started,
|
||||
log_archiving_paused,
|
||||
|
|
Loading…
Reference in a new issue