debian-django-reversion/settings.py

17 lines
459 B
Python

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'testproject/test.db3'
}
}
INSTALLED_APPS = ["reversion",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.admin",
"django.contrib.sites",
"django.contrib.sessions",
]
SITE_ID = 1
ROOT_URLCONF = "testproject.urls"
SECRET_KEY = "1"