mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-04-16 01:20:57 +00:00
12 lines
182 B
Python
12 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'
|