localhost postgres settings django

Solutions on MaxInterview for localhost postgres settings django by the best coders in the world

showing results for - "localhost postgres settings django"
Jacob
22 Oct 2016
1DATABASES = {
2    'default': {
3        'ENGINE': 'django.db.backends.postgresql',
4        'USER': 'mydatabaseuser',
5        'NAME': 'mydatabase',
6        'TEST': {
7            'NAME': 'mytestdatabase',
8        },
9    },
10}
11