From 84cdaedf5cbde6a60e2840ab35fcccf8106bd0f2 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 23 May 2024 14:01:57 +0100 Subject: Local Docker environment is now runnable with make --- conf/settings/local.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 conf/settings/local.py (limited to 'conf/settings/local.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, + } +} -- cgit v1.2.3