Question

I am starting my server in the repl using

(use 'ring.util.serve)
(serve my-app/handler)

How do I stop the server once started using it.

Thanks, Murtaza

Was it helpful?

Solution

ring.util.serve also contains stop-server which can be used to stop the server. So this should work for you:

(stop-server)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top