Project

General

Profile

« Previous | Next » 

Revision 75a981d9

Added by Serghei Mihai over 8 years ago

fix default sqlite database path

View differences:

debian/settings.py
1
import os
2

  
1 3
DEBUG = False
2 4
TEMPLATE_DEBUG = False
3 5

  
......
15 17
#     'bind_passwd': 'changeme',
16 18
#     'dn': 'ou=users,dc=dev,dc=entrouvert,dc=org',
17 19
# }
20

  
21
DATABASES = {
22
    'default': {
23
        'ENGINE': 'django.db.backends.sqlite3',
24
        'NAME': os.path.join(VAR_DIR, 'db.sqlite3'),
25
    }
26
}

Also available in: Unified diff