Browse Source
Merge pull request #149 from mitodl/master
Added deterministic handling of sqlite database location
pull/154/head
Pēteris Caune
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
hc/settings.py
|
|
@ -84,7 +84,7 @@ TEST_RUNNER = 'hc.api.tests.CustomRunner' |
|
|
|
DATABASES = { |
|
|
|
'default': { |
|
|
|
'ENGINE': 'django.db.backends.sqlite3', |
|
|
|
'NAME': './hc.sqlite', |
|
|
|
'NAME': '{0}/hc.sqlite'.format(BASE_DIR), |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|