environ icon indicating copy to clipboard operation
environ copied to clipboard

Library for managing environment variables in Clojure

Results 20 environ issues
Sort by recently updated
recently updated
newest added

Printing warnings to STDOUT pollutes the output of any program that uses STDOUT. This patch makes sure warnings are directed to STDERR.

I added `core/runtime-env` to better support graalvm native-image (where `core/env` reflects the compile time environment). Since it's a delay you just deref it: ```clojure (require '[environ.core :as environ]) @environ/runtime-env ```...

Hey, I am building a graal native executable and part of its dependencies use environ. The issue is that the `defonce env` gets compiled into that native executable and is...

Added a link to a demo project with complete examples of `project.clj` and `profiles.clj`, if you think that is useful.

I have a .lein-env file in my project. When I try to require environ.core, the following error is thrown, which prevents me from requiring environ again - I have to...

docker supports specifying environment vars using the `--env-file` [flag](https://docs.docker.com/engine/reference/commandline/run/#set-environment-variables-e-env-env-file). It would be great if environ could also incorporate this type of file. This would look something like: ``` > cat...

After upgrading from lein 2.8.1 to 2.8.2: ``` $ lein --version Warning: implicit hook found: lein-environ.plugin/hooks Hooks are deprecated and will be removed in a future version. Leiningen 2.8.2 on...

replace if with when (there is one branch so its more idiomatic to use when over if fn)

Previously used io/file with io/resource, which is not safe when the resource is not a file. Something like this should work?

I haven't been able to get boot-environ working with a simple uberjar. Attached is a minimal example of what happens: [environ-bug.zip](https://github.com/weavejester/environ/files/1919424/environ-bug.zip) If I run this with ``` boot bug java...