We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice if the behavior when loading dotenv files matched what's possible with the python-dotenv package:
The syntax of .env files supported by python-dotenv is similar to that of Bash: # Development settings DOMAIN=example.org ADMIN_EMAIL=admin@${DOMAIN} ROOT_URL=${DOMAIN}/app
The syntax of .env files supported by python-dotenv is similar to that of Bash:
.env
# Development settings DOMAIN=example.org ADMIN_EMAIL=admin@${DOMAIN} ROOT_URL=${DOMAIN}/app
The text was updated successfully, but these errors were encountered:
Maybe this could be added if we specify a different interpolation type. Right now we use the str.format specifications: https://github.com/tr11/python-configuration?tab=readme-ov-file#string-interpolation
str.format
Sorry, something went wrong.
No branches or pull requests
It would be nice if the behavior when loading dotenv files matched what's possible with the python-dotenv package:
The text was updated successfully, but these errors were encountered: