summaryrefslogtreecommitdiffstats
path: root/conf/settings/local.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-05-23 14:01:57 +0100
committerMatthew Lemon <y@yulqen.org>2024-05-23 14:01:57 +0100
commit84cdaedf5cbde6a60e2840ab35fcccf8106bd0f2 (patch)
tree7d650e6e53c31f5f69cc20932cf8e24144c11a1f /conf/settings/local.py
parent5f5a3de40a8d2fa9c6067c2b0fa567ff11419e80 (diff)
Local Docker environment is now runnable with make
Diffstat (limited to 'conf/settings/local.py')
-rw-r--r--conf/settings/local.py12
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,
+ }
+}