luminus

vnctaing 2020-10-15T05:11:15.024900Z

Ah I don’t know I assumed the generated template made only core.clj in env/ for a reason 😅, I’ve copied the file from /env/dev/clj/tartataing/core.clj to src/clj/tartataing and… https://tartataing.herokuapp.com/ tada 😄🎉 thanks for the help !

vnctaing 2020-10-15T05:23:19.025300Z

I see that there is

(mount/defstate ^{:on-reload :noop} repl-server
  :start
  (when (env :nrepl-port)
    (nrepl/start {:bind (env :nrepl-bind)
                  :port (env :nrepl-port)}))
  :stop
  (when repl-server
    (nrepl/stop repl-server)))

vnctaing 2020-10-15T05:23:30.025500Z

Do people use repl-server in production usually ?

vnctaing 2020-10-15T05:23:38.025700Z

to debug live apps ?

jumar 2020-10-15T12:27:33.027500Z

I’d remove it but I use socket repl (enabled via java system property set on command line)