Domanda

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

È stato utile?

Soluzione

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

(stop-server)
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top