diff --git a/hc/settings.py b/hc/settings.py index 0c1e9976..9a40b3d9 100644 --- a/hc/settings.py +++ b/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), } }