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
describe. Create a roadmap to keep vdotenv project running smoothly.
my idea
The text was updated successfully, but these errors were encountered:
I've got parsing working for: .env.simple
TEST=SIMPLE TEST2=SIMPLE2 #comment
.env.simpletoo
TEST3=SIMPLE3
With these two tests passing:
fn test_parse_single_file() { result := parse('.env.simple') assert result == '{"TEST" => "SIMPLE" , "TEST2" => "SIMPLE2"}' } fn test_parse_multi_file() { result := parse('.env.simple', '.env.simpletoo') assert result == '{"TEST" => "SIMPLE" , "TEST2" => "SIMPLE2" , "TEST3" => "SIMPLE3"}' }
https://github.com/nyx-litenite/vdotenv/tree/parse
Sorry, something went wrong.
@nyx-litenite Great job!
I also tested it. It looks good to me. I have created an issue, so let's discuss the rest here! #12
No branches or pull requests
describe.
Create a roadmap to keep vdotenv project running smoothly.
my idea
The text was updated successfully, but these errors were encountered: