Up to the documentation, it is possible to read a specific file:
env = Env()
env.read_env(".env.test", recurse=False)
If I switch recursive to True, then it will look for .env file and NOT for the file specified as first argument (path), making recursion useless in such cases.
Up to the documentation, it is possible to read a specific file:
If I switch recursive to
True, then it will look for.envfile and NOT for the file specified as first argument (path), making recursion useless in such cases.