Skip to content

Instantly share code, notes, and snippets.

@martinklepsch
Created August 15, 2014 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinklepsch/1fbb4961f902daf4e851 to your computer and use it in GitHub Desktop.
Save martinklepsch/1fbb4961f902daf4e851 to your computer and use it in GitHub Desktop.
(defproject creator "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/clojurescript "0.0-2277"]
[hiccup "1.0.5"]
[garden "1.2.1"]
[compojure "1.1.8"]
[om "0.7.1"]
[prismatic/om-tools "0.3.2"]]
:plugins [[lein-ring "0.8.11"]
[lein-cljsbuild "1.0.3"]
[lein-garden "0.1.10-SNAPSHOT"]]
:ring {:handler creator.handler/app}
:cljsbuild {
:builds [{
:source-paths ["src-cljs"]
:compiler {
:output-dir "resources/public/js"
:output-to "resources/public/js/creator.js"
:optimizations :none
:source-map true
:pretty-print true}}]}
:garden {
:builds [{
:id "screen"
;; The var containing your stylesheet:
:stylesheet creator.styles/screen
;; Compiler flags passed to `garden.core/css`:
:compiler {;; Where to save the file:
:vendors ["webkit"]
:output-to "resources/public/css/screen.css"
;; Compress the output?
:pretty-print? true }}]}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment