This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pam-django/settings.py

10 lines
273 B
Python

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/home/bdauvergne/Code/docbow/docbow.db',
}
}
INSTALLED_APPS=('django.contrib.auth',)
AUTHENTICATION_BACKENDS=('django.contrib.auth.backends.ModelBackend',)
SECRET_KEY='xxx'