mirror of
https://github.com/django/django.git
synced 2024-11-22 11:57:34 +01:00
18 lines
383 B
Smarty
18 lines
383 B
Smarty
from test_sqlite import * # NOQA
|
|
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
"USER": "user",
|
|
"NAME": "django",
|
|
"PASSWORD": "postgres",
|
|
"HOST": "localhost",
|
|
"PORT": 5432,
|
|
},
|
|
"other": {
|
|
"ENGINE": "django.db.backends.postgresql",
|
|
"USER": "user",
|
|
"NAME": "django2",
|
|
},
|
|
}
|