diff --git a/myproject/db.sqlite3 b/myproject/db.sqlite3 deleted file mode 100755 index 2c1551c..0000000 Binary files a/myproject/db.sqlite3 and /dev/null differ diff --git a/myproject/myproject/settings.py b/myproject/myproject/settings.py index 5a34f1f..cd5ea10 100755 --- a/myproject/myproject/settings.py +++ b/myproject/myproject/settings.py @@ -80,7 +80,7 @@ ROOT_URLCONF = 'myproject.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ['myproject/templates'], + 'DIRS': [ os.path.join(BASE_DIR, 'myproject/templates')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ @@ -110,9 +110,7 @@ DATABASES = { 'USER': config('DBUSER','postgres'), 'PASSWORD': config('DBPASS','password'), 'NAME': config('DBNAME','database'), - 'OPTIONS': { - 'options': '-c search_path=' + config('DBSCHEMA', 'public') - } + 'OPTIONS': { 'options': '-c search_path=' + config('DBSCHEMA', 'public') } } }