mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-19 13:00:25 +00:00
11 lines
182 B
Python
11 lines
182 B
Python
import os
|
|
|
|
BASE_DIR = os.path.dirname(__file__)
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.contenttypes',
|
|
'model_utils',
|
|
'model_utils.tests',
|
|
)
|
|
|
|
DATABASE_ENGINE = 'sqlite3'
|