Skip to content
Snippets Groups Projects
Unverified Commit 4de3b941 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Use local settings for database.

parent 113b70d7
No related branches found
No related tags found
No related merge requests found
......@@ -70,8 +70,8 @@ WSGI_APPLICATION = 'biscuit.core.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': LocalSetting(default='django.db.backends.sqlite3'),
'NAME': LocalSetting(default='{{ BASE_DIR }}/db.sqlite3'),
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment