how to pass -Dproperty1=value
to lein repl
?
from what I can see, you do it by setting:
export LEIN_JVM_OPTS=-Dproperty1=value
in your environmentThough that will overwrite some defaults. It’s probably safest to add them back in:
export LEIN_JVM_OPTS="-Dproperty1=value -Xverify:none -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
thank you @quoll 😉