mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-22 09:51:08 +00:00
11 lines
261 B
Python
11 lines
261 B
Python
SECRET_KEY = 'fake-key'
|
|
INSTALLED_APPS = [
|
|
'django.contrib.auth',
|
|
'django.contrib.contenttypes',
|
|
"testfixtures.tests.test_django",
|
|
]
|
|
|
|
DATABASES = {'default': {'ENGINE': 'django.db.backends.sqlite3'}}
|
|
|
|
DEFAULT_AUTO_FIELD='django.db.models.AutoField'
|