Skip to content

load_dotenv does not work with variables in values #595

Description

@arojoal

I have a .env file with this variables similar to those explained in the library README:

# Development settings
DOMAIN=example.org
ADMIN_EMAIL=admin@${DOMAIN}
ROOT_URL=${DOMAIN}/app

# base work directory
WORKDIR=/workdir_shared

# logdir
LOGDIR=${WORKDIR}/logs

When I run this script I see that the values of variables ${DOMAIN} and ${WORKDIR} are not applied. I get:

DOMAIN: example.org
ROOT_URL: ${DOMAIN}/app
ADMIN_EMAIL: admin@${DOMAIN}
WORKDIR: /workdir_shared
LOGDIR: ${WORKDIR}/logs

Whe it should be:

DOMAIN: example.org
ROOT_URL: example.org/app
ADMIN_EMAIL: admin@example.org
WORKDIR: /workdir_shared
LOGDIR: workdir_shared/logs

What can be wrong?

This is the script code:

import os
from dotenv import load_dotenv


load_dotenv(verbose=True, interpolate=True)

print("DOMAIN:", os.getenv("DOMAIN"))
print("ROOT_URL:", os.getenv("ROOT_URL"))
print("ADMIN_EMAIL:", os.getenv("ADMIN_EMAIL"))
print("WORKDIR:", os.getenv("WORKDIR"))
print("LOGDIR:", os.getenv("LOGDIR"))

I tried with "load_dotenv()" with same result.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions