Skip to content

Instantly share code, notes, and snippets.

@stuartsierra
Created October 18, 2013 21:26
Show Gist options
  • Save stuartsierra/7048507 to your computer and use it in GitHub Desktop.
Save stuartsierra/7048507 to your computer and use it in GitHub Desktop.
Sample Leiningen project.clj for trying out Austin
(defproject cljsfoo1 "0.1.0-SNAPSHOT"
:plugins [[lein-cljsbuild "0.3.4"]
[com.cemerick/austin "0.1.1"]]
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/clojurescript "0.0-1934"]
[ring "1.2.0"]
[compojure "1.1.5"]
[enlive "1.1.1"]]
:source-paths ["src/clj" "src/cljs"]
:cljsbuild {:builds
[{:source-paths ["src/cljs"]
:compiler {:optimizations :none
:output-dir "resources/public/build"
:output-to "resources/public/build/deps.js"}}]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment