On Jul 12, 7:27 am, Tarantoga <d.bushe...@gmail.com> wrote: > Hi all, > I'd like to make a web-app to which I could connect using slime and > make some changes there while the application is still running. How to > start Swank-server from the working Ring-application?
The simplest way during development is to start swank (using leiningen) first, and then load & start the web server from the REPL. This ensures swank will start even if your code has a compilation error somewhere. Doing it the other way around isn't difficult either: (require 'swank.swank) (swank.swank/start-repl 4005) ; that's the standard swank port number -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en