diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-05-23 15:35:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 15:35:49 +0100 |
commit | c89d53a2921e4e6b681c6a9dc97f7cc8eeb43956 (patch) | |
tree | 345d5259906a72a145095a6e465689d8d8a513d0 /conf/settings/local.py | |
parent | 88dacb9f57a40c96f48c359275fe11f85aa1f051 (diff) | |
parent | 5f9ca9b3e597a9dfda9ffb3af25a60b2c7309986 (diff) |
Merge pull request #50 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'conf/settings/local.py')
-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, + } +} |