mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
allow Path args to get_dir_size and copy_and_overwrite
This commit is contained in:
parent
ca77d90a8f
commit
e727af6f22
2 changed files with 4 additions and 3 deletions
|
@ -68,10 +68,11 @@ TEMPLATES = [
|
|||
|
||||
WSGI_APPLICATION = 'core.wsgi.application'
|
||||
|
||||
DATABASE_FILE = Path(OUTPUT_DIR) / SQL_INDEX_FILENAME
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': str(Path(OUTPUT_DIR) / SQL_INDEX_FILENAME),
|
||||
'NAME': str(DATABASE_FILE),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue