Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Serving static files with ring/compojure - from a war

Using ring (and the lein-ring tools) - I am able to serve up static files from "resources" etc as per the docs when running in development - however - when I package things up via lien uberwar I have no idea how to make it serve those files when running in a container. I see conflicting docs on wrap-resource, or setting :resource-path but none seem to work.

like image 467
Michael Neale Avatar asked Oct 19 '11 04:10

Michael Neale


2 Answers

As per Compojure's Getting Started Wiki, put route/resources below your paths:

(defroutes main-routes
  (GET "/" [] "<h1>Hello World Wide Web!</h1>")
  (route/resources "/")
  (route/not-found "Page not found"))

...and then, create a folder resources/public in your project, put your static files there. When referring to these files, the /resources/public is implicit, so you can write something like: (include-css "/css/site.css").

Here is an example that deploys to cloudbees.

like image 53
Michael Neale Avatar answered Nov 01 '22 01:11

Michael Neale


compojure.route/resources should do what you want.

Just put the files in resources/public and then add a route (resources "/") near the end of your routes list.

You need a fairly recent lein-ring for this to work correctly; older versions of lein-ring don't support the resources directory for public assets.

like image 41
Joost Diepenmaat Avatar answered Oct 31 '22 23:10

Joost Diepenmaat