From 3e55a1d2843805de40714a3e920b97cf546966f1 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 22 Jun 2024 16:31:05 +0100 Subject: Some tidying only Includes the DATABASE_URL in the local settings. Linting changes. --- config/settings/local.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config/settings/local.py') diff --git a/config/settings/local.py b/config/settings/local.py index afcdb3f..155b219 100644 --- a/config/settings/local.py +++ b/config/settings/local.py @@ -2,6 +2,8 @@ from .base import * # noqa: F403 from .base import env +DATABASE_URL = env.read_env("DATABASE_URL", "postgres://postgres:postgres@localhost:5432/postgres") + # GENERAL # ------------------------------------------------------------------------------ # https://docs.djangoproject.com/en/dev/ref/settings/#debug -- cgit v1.2.3