mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-24 19:32:53 +03:00
32 lines
613 B
Python
32 lines
613 B
Python
import dj_database_url
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = True
|
|
|
|
SECRET_KEY = 'this is my secret key' # NOQA
|
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
DATABASES = {
|
|
'default': dj_database_url.config(default='postgres:///localized_fields')
|
|
}
|
|
|
|
DATABASES['default']['ENGINE'] = 'psqlextra.backend'
|
|
|
|
LANGUAGE_CODE = 'en'
|
|
LANGUAGES = (
|
|
('en', 'English'),
|
|
('ro', 'Romanian'),
|
|
('nl', 'Dutch')
|
|
)
|
|
|
|
INSTALLED_APPS = (
|
|
'tests',
|
|
)
|
|
|
|
# set to a lower number than the default, since
|
|
# we want the tests to be fast, default is 100
|
|
LOCALIZED_FIELDS_MAX_RETRIES = 3
|
|
|
|
LOCALIZED_FIELDS_EXPERIMENTAL = False
|