瀏覽代碼

Fixes #37, place sqlite file in PROJECT_ROOT

David Ray 8 年之前
父節點
當前提交
fdc597aa18
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      bakerydemo/settings/base.py

+ 3 - 3
bakerydemo/settings/base.py

@@ -13,8 +13,8 @@ https://docs.djangoproject.com/en/1.10/ref/settings/
 import os
 
 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
-BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-
+BASE_DIR = os.path.abspath(os.path.join(os.path.dirname(__file__), os.pardir))
+PROJECT_ROOT = os.path.abspath(os.path.join(BASE_DIR, os.pardir))
 
 # Quick-start development settings - unsuitable for production
 # See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/
@@ -106,7 +106,7 @@ WSGI_APPLICATION = 'bakerydemo.wsgi.application'
 DATABASES = {
     'default': {
         'ENGINE': 'django.db.backends.sqlite3',
-        'NAME': os.path.join(BASE_DIR, 'bakerydemodb')
+        'NAME': os.path.join(PROJECT_ROOT, 'bakerydemodb')
     }
 }