Skip to content
New issue

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

Named pipes aren't supported out of the box #65

Open
ChristianIvicevic opened this issue Feb 24, 2023 · 2 comments
Open

Named pipes aren't supported out of the box #65

ChristianIvicevic opened this issue Feb 24, 2023 · 2 comments

Comments

@ChristianIvicevic
Copy link

I am using Doppler to handle secrets and I am running doppler run --mount .env --command "while true; do sleep 1; done" which creates .env as a named pipe. dotenvy fails to parse anything from that file so I had to add the following as a workaround:

match File::open(".env") {
    Ok(file) => {
        dotenvy::from_read(file).ok();
    }
    Err(_) => {
        tracing::debug!("No .env file found");
    }
}

I wanted to ask whether you can look into supporting named pipes natively instead.

@allan2
Copy link
Owner

allan2 commented Feb 28, 2023

Can you provide an example .env file?

@allan2
Copy link
Owner

allan2 commented May 25, 2023

Hi @ChristianIvicevic, is this still an issue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants