blob: 684972c41e56cc49c9b1b39da9d31842fb8e29c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
from test_sqlite import * # NOQA
DATABASES = {
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"USER": "user",
"NAME": "geodjango",
"PASSWORD": "postgres",
"HOST": "localhost",
"PORT": 5432,
},
"other": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"USER": "user",
"NAME": "geodjango2",
"PASSWORD": "postgres",
"HOST": "localhost",
"PORT": 5432,
},
}
|