dotenv-java icon indicating copy to clipboard operation
dotenv-java copied to clipboard

🗝️ Dotenv is a no-dep, pure Java module that loads environment variables from a .env file

Results 20 dotenv-java issues
Sort by recently updated
recently updated
newest added

Add @alexbraga as a contributor for doc. This was requested by alexbraga [in this comment](https://github.com/cdimascio/dotenv-java/pull/30#issuecomment-1166658844)

This change allows you to configure a recursive search through parent directories for a .env file. This is useful in a multi-module project when you want to share a common...

Hey, First of all, thanks a load for your work! This package is awesome! It's extremely useful and the code is super easy to navigate and work with 🙌 I...

It would be very nice if this library added the module-info class. It is possible to use the Moditect plugin to add to a jar that targets Java 8

This pull request adds `maven-enforcer-plugin` to check the Java version. Since tests are compiled using Java 11, it is the minimum version that needs to be checked.

This pull request fixes the license in the header to match the project license.

This pull request proposes a small performance improvement. Compilation of a regular expression pattern is a relatively "heavy" process. Since we use the same pattern in the loop it's possible...

``` Dotenv dotenv = Dotenv.configure() .directory("/assets") .filename("env"); // instead of '.env', use 'env' dotenv.get("MY_ENV_VAR1"); ``` should be ``` Dotenv dotenv = Dotenv.configure() .directory("/assets") .filename("env").load(); // instead of '.env', use 'env'...

Hello there, This is my first post in this repo. If not anything else, big thanks for this very cool project. I would like to ask if it is possible...

Hi readers I am setting up this package in my java project, have added dependency and also created a .env file but when calling configure() as mentioned below ` Dotenv...