mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-24 19:32:53 +03:00
25 lines
406 B
Python
25 lines
406 B
Python
import dj_database_url
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = True
|
|
|
|
SECRET_KEY = 'this is my secret key'
|
|
|
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
|
|
|
DATABASES = {
|
|
'default': dj_database_url.config(default='postgres:///localized_fields')
|
|
}
|
|
|
|
LANGUAGE_CODE = 'en'
|
|
LANGUAGES = (
|
|
('en', 'English'),
|
|
('ro', 'Romanian'),
|
|
('nl', 'Dutch')
|
|
)
|
|
|
|
INSTALLED_APPS = [
|
|
'localized_fields',
|
|
'tests'
|
|
]
|