Skip to content

Instantly share code, notes, and snippets.

@Otann
Created May 4, 2015 17:12
Show Gist options
  • Save Otann/b72a25608da976c320b8 to your computer and use it in GitHub Desktop.
Save Otann/b72a25608da976c320b8 to your computer and use it in GitHub Desktop.
(ns webapp.core
(:use [compojure.core :only (defroutes GET)]
[ring.adapter.jetty :as ring]))
(defroutes routes
(GET "/" [] "<h2>Hello World</h2>"))
(defn -main []
(run-jetty routes {:port 3000 :join? false}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment