fix default sqlite database path

This commit is contained in:
Serghei Mihai 2015-06-01 18:44:58 +02:00
parent 381ece347c
commit 75a981d928
1 changed files with 9 additions and 0 deletions

9
debian/settings.py vendored
View File

@ -1,3 +1,5 @@
import os
DEBUG = False
TEMPLATE_DEBUG = False
@ -15,3 +17,10 @@ TIME_ZONE = 'Europe/Paris'
# 'bind_passwd': 'changeme',
# 'dn': 'ou=users,dc=dev,dc=entrouvert,dc=org',
# }
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(VAR_DIR, 'db.sqlite3'),
}
}