2
votes
3answers
193 views
Compojure development without web server restarts
I've written a small Swing App before in Clojure and now I'd like to create an Ajax-style Web-App. Compojure looks like the best choice right now, so that's what I'm going to try o …
3
votes
1answer
344 views
Compojure Templating Pages.
I have a bunch of static html files that share same header and footer. I
would like to share this header and footer across all pages. For now i
use the following routed but it is a …
2
votes
3answers
313 views
Deploying Compojure/Sinatra Applications.
What is the preferred way of deploying a compojure/sinatra applications? I have multiple sites running on the host so i can't run jetty/mongrel on port 80. How should i handle mult …
2
votes
1answer
118 views
How do I make Compojure listen to a single IP
Hi,
I have started a Compojure (Jetty) server with:
(defonce *server* (run-server {:host "localhost" :port 8080} "/*" (servlet routes)))
but netstat still shows that it is list …
