This commit is contained in:
Ross
2021-02-11 20:35:30 +00:00
parent bf8a775a05
commit 5763aae287
5 changed files with 50 additions and 4 deletions
+6 -1
View File
@@ -50,6 +50,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'debug_toolbar',
"tagulous",
"dbbackup",
]
MIDDLEWARE = [
@@ -198,7 +199,11 @@ THUMBNAIL_ALIASES = {
},
}
DBBACKUP_STORAGE = 'django.core.files.storage.FileSystemStorage'
DBBACKUP_STORAGE_OPTIONS = {'location': os.path.join(BASE_DIR, '../backups')}
try:
from .settings_local import *
except ImportError:
pass
pass