Prettify code, change ENV variable name

This commit is contained in:
Jeff Bogatay 2016-08-23 13:28:08 -04:00
parent c196e2eb66
commit a1cd05f9e2
2 changed files with 8 additions and 2 deletions

View File

@ -83,5 +83,5 @@ PAPERLESS_SHARED_SECRET=""
# You can specify where you want the SQLite database to be stored instead of
# the default location
#PAPERLESS_DBLOCATION=/path/to/database/file
#PAPERLESS_DBDIR=/path/to/database/file

View File

@ -95,7 +95,13 @@ WSGI_APPLICATION = 'paperless.wsgi.application'
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(os.getenv("PAPERLESS_DBLOCATION",os.path.join(BASE_DIR, "..", "data")), "db.sqlite3")
"NAME": os.path.join(
os.getenv(
"PAPERLESS_DBDIR",
os.path.join(BASE_DIR, "..", "data")
),
"db.sqlite3"
)
}
}