Skip to content

Instantly share code, notes, and snippets.

@shanemhansen
Created April 29, 2016 22:31
Show Gist options
  • Save shanemhansen/2b16db987ae9efb658f413247982d181 to your computer and use it in GitHub Desktop.
Save shanemhansen/2b16db987ae9efb658f413247982d181 to your computer and use it in GitHub Desktop.
(use 'ring.adapter.jetty)
; => nil
(defn app-handler [request]
{:status 200
:headers {"Content-Type" "text/html"}
:body "Hello from Ring"})
; => #'user/app-handler
(run-jetty app-handler {:port 3000})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment