summaryrefslogtreecommitdiffstats
path: root/conf/settings/local.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-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,
+ }
+}