Does someone have an example what goes into dev.edn
or local.edn
? It seems to me these files are ignored when I start with lein run
. I guess I don't know how to use them properly. I would like to add a dependecyt to a module but only in dev, to ensure load order.
They are ignored because lein run
doesn't use the :duct.profile/dev
or :duct.profile/local
profiles
lein run
is meant for production use
(Well you'd actually build an uberjar for production but the effect is similar)
If you want to use dev
/ local
you need to use lein run
(dev)
(go)
Got it. Thanks for your enlighting explanations. :thumbsup: