Skip to content

Instantly share code, notes, and snippets.

@neotyk
Created February 7, 2010 23:56
Show Gist options
  • Save neotyk/297766 to your computer and use it in GitHub Desktop.
Save neotyk/297766 to your computer and use it in GitHub Desktop.
Found it very useful in last days
(ns serv (:use compojure))
(defroutes greetings
(GET "/"
(html [:h1 "Hello World"]))
(ANY "*"
(page-not-found)))
(def server (run-server {:port 8080} "/*" (servlet greetings)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment