mirror of https://github.com/django/django.git
21 lines
466 B
Smarty
21 lines
466 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",
|
|
"PASSWORD": "postgres",
|
|
"HOST": "localhost",
|
|
"PORT": 5432,
|
|
},
|
|
}
|