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

Hi, thanks for the amazing plugin it helps a lot. There is one slight annoyance when enabling `EnvFile` in a run configuration, the dialogue window to search for the `.env`...

It would be nice if interpolation was supported Example: ``` MY_FIREWALL=10.10.0.1 MY_FRONTEND=192.168.10.1 MY_BACKEND=192.168.10.1 MY_HOSTS="${MY_FIREWALL},${MY_FRONTEND},${MY_BACKEND}" ``` should give: ``` $ echo $MY_HOSTS 10.10.0.1,192.168.10.1,192.168.10.1 ```

Requesting support for Docker and Docker Compose Run/Debug configuration. (EnvFile is great)

help wanted

`Error running 'serve': class java.lang.Integer cannot be cast to class java.lang.String (java.lang.Integer and java.lang.String are in module java.base of loader 'bootstrap')` `Error running 'serve': class java.lang.Boolean cannot be cast to...

Tried to use .env file but, the plugin can't see hidden files in linux even though IDE does see it. I am not able to rename file because in our...

Hi! I have caught a bug. When the plugin has enabled and docker-compose interpreter has selected then the config window has been blocked. I have no experience with java, but...

In my workflow I often switch between 2-3 .env files while running couple of different test suites from the same project. In order to do this I have to navigate...

help wanted

Plugin for Java project is loading values as System Environment Property, no issues with that. In workflows where initialization happens via call to `System.getProperty(key)`, we need to fallback to Run...

help wanted

It would be better if comments would have different color than the rest of the entries (i.e. grayed) ```py MODE="test" # PREFIX="your_prefix_here_" MAX_TASKS=10 JOB={"queue":"${PREFIX}jobber"} ``` So when someone put a...

fixes #102 The lookahead `(?=\\w)`ensures that the pathological case of a variable called `export` is not accidentally destroyed: `export = foo` is not changed by the regex, but `export foo=bar`...

blocked