diff options
author | Matthew Lemon <y@yulqen.org> | 2024-05-23 14:01:57 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-05-23 14:01:57 +0100 |
commit | 84cdaedf5cbde6a60e2840ab35fcccf8106bd0f2 (patch) | |
tree | 7d650e6e53c31f5f69cc20932cf8e24144c11a1f /conf | |
parent | 5f5a3de40a8d2fa9c6067c2b0fa567ff11419e80 (diff) |
Local Docker environment is now runnable with make
Diffstat (limited to 'conf')
-rw-r--r-- | conf/settings/local.py | 12 |
1 files changed, 12 insertions, 0 deletions
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, + } +} |