This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-25
Channels
- # beginners (27)
- # boot (49)
- # cider (51)
- # cljs-dev (29)
- # cljsjs (1)
- # cljsrn (19)
- # clojure (59)
- # clojure-austin (2)
- # clojure-belgium (19)
- # clojure-china (1)
- # clojure-dev (14)
- # clojure-dusseldorf (7)
- # clojure-russia (8)
- # clojure-spec (115)
- # clojure-uk (45)
- # clojurescript (118)
- # css (6)
- # cursive (8)
- # datascript (20)
- # datomic (32)
- # emacs (5)
- # events (2)
- # flambo (21)
- # hoplon (58)
- # incanter (8)
- # jobs-rus (1)
- # jobs_rus (1)
- # off-topic (3)
- # om (22)
- # om-next (9)
- # onyx (5)
- # other-languages (79)
- # re-frame (126)
- # reagent (6)
- # ring (7)
- # specter (1)
- # untangled (119)
- # yada (38)
@richiardiandrea: is there some more documentation about boot.parallel
? Definitely add it to the changelog 🙂
with 2.6.0, if I want to point Boot to my Clojars mirror, do I have to do it through the env variable? Should I do it through the :repositories
key?
you don't need to use the env var unless you want to affect how boot loads its own dependencies, before your build.boot/profile.boot are read
@martinklepsch: well there are docstrings :) I agree it is a bit of an esoteric feature ahah
ok cool, yesterday while playing I added Dirac, optionally, of course for people who don't want to use cljs-repl...
it looks like tools.namespace does not play well with something (I could not understand what)
that is why, one of my repl only has "clj" tasks and in there I am able to refresh no problem
the other part serves static content on port 8000 (and another cljs repl, with boot-reload)
@richiardiandrea: https://github.com/Deraen/boot-ctn should setup c.t.n watch dirs correctly for Boot
@juhoteperi: that's weird because it works for some tasks and not for other, but I will try it out
@richiardiandrea: Tasks that use c.t.n inside pods need to set the watch dirs themselves
Also, I could not get 0.2.x working inside pods myself, but I was able to use 0.3 alpha, with low-level API (track and reload instead of repl), check boot-alt-test for this
@juhoteperi: if you use (:directories boot.pod/env)
instead of (boot.core/get-env :directories)
your code will work in any pod
@micha: Yes, but tasks need to set the dirs again inside the pod because setting the dirs in "root pod" doesn't affect new pods (I think)
And with the low-level API, that tasks probably should use, the dirs should anyways be provided as parameter to scan-dirs: https://github.com/metosin/boot-alt-test/blob/master/src/metosin/boot_alt_test/impl.clj#L45-47