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
Instances of env() can be replaced with os.environ.get().
env()
os.environ.get()
load_dotenv(find_dotenv()) can be removed entirely.
load_dotenv(find_dotenv())
The sample project does not include a .env file, and if it did, wouldn't it make more sense to handle that in compose.yaml with env_file: .env?
.env
compose.yaml
env_file: .env
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instances of
env()
can be replaced withos.environ.get()
.load_dotenv(find_dotenv())
can be removed entirely.The sample project does not include a
.env
file, and if it did, wouldn't it make more sense to handle that incompose.yaml
withenv_file: .env
?The text was updated successfully, but these errors were encountered: