Is there any way to get lein-dotenv
to work with Leiningen's trampoline
?
you can't portably set environment variables within the jvm, so that makes it effectively impossible
someone could make a linux only / osx only extension that allows manipulating the environment, then you could make it work, I guess
you can use the env
shell utility to start a process with a specified environment, one trick I use is
$ env $(<env-file) lein ...
where env-file
contains something like
FOO=bar
BAZ=quux
I wonder how that trick translates to fish
shell. It's not process substitution, right?
does anyone know of a tool/gist to convert a project.clj to a deps.edn file
emacs macro to the rescue