env
env copied to clipboard
Clojure / ClojureScript environment configuration library.
Hey there, I'm using `env/def` to define some env vars with defaults, e.g. ``` (env/def SERVER_PORT "8080") ``` I'm running into some trouble using AOT compilation in my boot build...
This is probably some silly error on my part, but I am having trouble getting this to pick up an environmental variable. It says it is not defined, even though...
For example, in: ``` (env/def database_jdbc.url "jdbc:postgresql://..." database_username "..." database_password "...") ``` The first env var in not present when I query it with `(env/env)`.