This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-01-10
Channels
- # announcements (14)
- # beginners (55)
- # calva (4)
- # cider (9)
- # clojure (56)
- # clojure-austin (25)
- # clojure-brasil (1)
- # clojure-dev (29)
- # clojure-europe (44)
- # clojure-mexico (1)
- # clojure-nl (2)
- # clojure-norway (1)
- # clojure-uk (5)
- # clojurescript (15)
- # cursive (9)
- # datomic (5)
- # emacs (30)
- # events (1)
- # graalvm (30)
- # honeysql (17)
- # hyperfiddle (54)
- # introduce-yourself (1)
- # jobs-discuss (6)
- # kaocha (2)
- # leiningen (5)
- # lsp (6)
- # malli (3)
- # missionary (16)
- # off-topic (42)
- # overtone (40)
- # pedestal (2)
- # re-frame (21)
- # shadow-cljs (16)
- # squint (2)
- # tools-deps (14)
Hi. My company requires vpn connection to download deps when working from home (which is fine), but normally nothing has changed. When nothing is changed and my vpn is off lein
will hang while I assume it tries to talk to our maven instance. Is there a way to figure out what calls are being made or maybe a setting to not check the network if no jars are missing?
You can put :offline? true
in a profile and use that to prevent lein
checking the network. See https://codeberg.org/leiningen/leiningen/src/branch/stable/sample.project.clj#L151-L153
Thanks, that's really helpful. Do you happen to know what network calls happen without :offline? true
and there are no missing deps?
No, I haven't used lein
since 2015 and I never used offline mode even then.
No problem. Thanks!!