You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4KB

  1. (defproject googlefit-api-test "0.1.0-SNAPSHOT"
  2. :description "FIXME: write description"
  3. :url "http://example.com/FIXME"
  4. :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
  5. :url "https://www.eclipse.org/legal/epl-2.0/"}
  6. :dependencies [[org.clojure/clojure "1.10.0"]
  7. [org.clojure/clojurescript "1.10.312"]
  8. [ring "1.7.1"]
  9. [reagent "0.9.1"]]
  10. :repl-options {:init-ns googlefit-api-test.core}
  11. :main googlefit-api-test.core
  12. :source-paths ["src/clj" "src/cljs"]
  13. :resource-paths ["target" "resources"]
  14. :aliases
  15. {"fig" ["trampoline" "run" "-m" "figwheel.main"]
  16. "build-dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]}
  17. :profiles
  18. {:dev
  19. {:dependencies [[com.bhauman/figwheel-main "0.2.3"]
  20. [com.bhauman/rebel-readline-cljs "0.1.4"]]
  21. :main googlefit-api-test.core
  22. :cljsbuild
  23. {:builds {:dev {:source-paths ["src/cljs"]
  24. :figwheel true
  25. :compiler
  26. {:main googlefit-api-test.core
  27. :asset-path "cljs-out/dev"
  28. :output-to "target/public/cljs-out/dev-main.js"
  29. :output-dir "target/public/cljs-out/dev"
  30. :source-map-timestamp true}}}}
  31. :clean-targets ^{:protect false} ["target/public/cljs-out"
  32. :target-path]}})