summaryrefslogtreecommitdiffstats
path: root/conf/settings/local.py
blob: 09927267149120f90ba977c59e4651c9f36cff72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from .base import *

DATABASES = {
    "default": {
        "ENGINE": "django.db.backends.postgresql",
        "NAME": "ded",
        "USER": "ded",
        "PASSWORD": "ded",
        "HOST": "postgres",
        "PORT": 5432,
    }
}