diff options
Diffstat (limited to '')
-rw-r--r-- | conf/settings/base.py (renamed from ded/settings.py) | 0 | ||||
-rw-r--r-- | conf/settings/local.py | 12 |
2 files changed, 12 insertions, 0 deletions
diff --git a/ded/settings.py b/conf/settings/base.py index a16c488..a16c488 100644 --- a/ded/settings.py +++ b/conf/settings/base.py diff --git a/conf/settings/local.py b/conf/settings/local.py new file mode 100644 index 0000000..0992726 --- /dev/null +++ b/conf/settings/local.py @@ -0,0 +1,12 @@ +from .base import * + +DATABASES = { + "default": { + "ENGINE": "django.db.backends.postgresql", + "NAME": "ded", + "USER": "ded", + "PASSWORD": "ded", + "HOST": "postgres", + "PORT": 5432, + } +} |