17 lines
221 B
Python
17 lines
221 B
Python
SECRET_KEY = 'so-secret'
|
|
|
|
INSTALLED_APPS = (
|
|
'fkreplace',
|
|
'tests',
|
|
)
|
|
|
|
MIDDLEWARE_CLASSES = ()
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': 'db.sqlite3',
|
|
}
|
|
}
|
|
|