[#344] print link to nREPL docs
This commit is contained in:
parent
eaf8da5853
commit
8266349df8
1 changed files with 6 additions and 5 deletions
|
|
@ -190,8 +190,9 @@
|
|||
[(java.net.InetAddress/getByName (first parts))
|
||||
(Integer. ^String (second parts))])
|
||||
host+port (if-not address (str "localhost:" port)
|
||||
host+port)]
|
||||
(println "Starting nREPL server at" host+port)
|
||||
(let [socket-server (new ServerSocket port 0 address)]
|
||||
(reset! server socket-server)
|
||||
(listen ctx socket-server))))
|
||||
host+port)
|
||||
socket-server (new ServerSocket port 0 address)]
|
||||
(println "Started nREPL server at" host+port)
|
||||
(println "For more info visit https://github.com/borkdude/babashka/blob/master/doc/repl.md#nrepl.")
|
||||
(reset! server socket-server)
|
||||
(listen ctx socket-server)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue