EnvFile icon indicating copy to clipboard operation
EnvFile copied to clipboard

EnvFile 3.x is a plugin for JetBrains IDEs that allows you to set environment variables for your run configurations from one or multiple files.

Results 110 EnvFile issues
Sort by recently updated
recently updated
newest added

I am trying to use this plugin, but have run into issues that were solved in PR #198 and was hoping to get that fix released

IDE: GoLand 2023.1.2 Issue: Manually added custom file (e.g. named .env.dist) to list of env files in Run/Debug configuration is ignored. As result launched application cannot load environment variables since...

I'm using the EnvFile plugin for Cucumber tests. But since updating to a new M2 MacBook, I'm getting the following error when starting a test: ### Stacktrace ``` java.lang.Throwable: Read...

We have lots of Kubernetes config files in yaml that list the env vars in the following style: ``` env: - name: MY_KEY_1 value: "value1" - name: MY_KEY_2 value: "value2"...

Fixes: https://github.com/ashald/EnvFile/issues/213 If EnvFile encounters a well-formed YAML configuration file that contains values other than literal strings, it will fail with a `ClassCastException`. This change should have no effect on...

Support for gradle unit test to recognize env vars https://github.com/ashald/EnvFile/issues/103

I'm trying to add an env file to my configuration and see an error: `Error response from daemon: invalid environment variable: =::=::\` My configuration is a pytest run using docker-compose...

I've upgraded my Goland using ToolBox and after that when I try to run any configuration that is using EnvFile I got this error and I need to restart the...

Relevant Stack: java.lang.ClassCastException: class java.lang.String cannot be cast to class java.util.Map (java.lang.String and java.util.Map are in module java.base of loader 'bootstrap') at net.ashald.envfile.providers.yaml.YamlEnvFileParser.parse(YamlEnvFileParser.java:15) at net.ashald.envfile.providers.SingleFileEnvVarsProvider.getEnvVars(SingleFileEnvVarsProvider.java:41) at net.ashald.envfile.platform.EnvFileEnvironmentVariables.render(EnvFileEnvironmentVariables.java:67) at net.ashald.envfile.products.goland.GolandRunConfigurationExtension.patchCommandLine(GolandRunConfigurationExtension.java:37) at...

The yaml spec supports strings with or without single or double quotes. The following are considered identical: ``` Sample String "Sample String" 'Sample String' ``` EnvFile can read yaml files...