This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-21
Channels
- # admin-announcements (14)
- # aws (27)
- # beginners (10)
- # boot (152)
- # cljsrn (3)
- # clojure (93)
- # clojure-hk (4)
- # clojure-russia (35)
- # clojure-switzerland (1)
- # clojurecup (1)
- # clojurescript (146)
- # core-async (23)
- # cursive (2)
- # devcards (1)
- # editors (1)
- # hoplon (28)
- # jobs-rus (4)
- # ldnclj (3)
- # leiningen (3)
- # luminus (2)
- # off-topic (4)
- # om (174)
- # re-frame (1)
- # slack-help (5)
@micha: did you see https://github.com/tolitius/mount ? Good rethink of solving repl reload task w/o “coconut lisping” (as you call it ;-)) which was introduced by Component
im having a small problem with my packaged castra app, i can run the app fine via boot serve
but in the docker-image running with java -cp target/myproject-0.1.0.jar clojure.main -m myproject.api
fails to find the classes iv wrapped with castra
the project builds and runs only fails when making an rpc call
@flyboarder: are your classes in the jar?
i believe so...
nope cannot find classname on class path
the ones wrapped in castra so my api/auth.clj
just booting into the docker image to run that
im rebuilding
@micha: ah ok! so the only namespace from my project seems to be the AOT entrypoint
@flyboarder: https://github.com/flyboarder/theLounge/blob/2f2b8292de41228fb445e5d3a0d2ddd25c8df33d/build.boot#L25
this makes so much sense, so the clj files are not being included.
now if I move those API’s to another jar (refactoring the ns) i would need to do the same as well
ok great, thanks micha!!