diff options
Diffstat (limited to '')
-rw-r--r-- | config/settings/local.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |