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.

37 lines
1.5KB

  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. [ring/ring-jetty-adapter "1.8.0"]
  8. [compojure "1.6.1"]
  9. [org.clojure/clojurescript "1.10.312"]
  10. [reagent "0.9.1"]
  11. [ring-server "0.5.0"]]
  12. :repl-options {:init-ns googlefit-api-test.core}
  13. :main googlefit-api-test.core
  14. :source-paths ["src/clj" "src/cljs"]
  15. :resource-paths ["target" "resources"]
  16. :aliases
  17. {"fig" ["trampoline" "run" "-m" "figwheel.main"]
  18. "build-dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]}
  19. :profiles
  20. {:dev
  21. {:dependencies [[com.bhauman/figwheel-main "0.2.3"]
  22. [com.bhauman/rebel-readline-cljs "0.1.4"]]
  23. :main googlefit-api-test.core
  24. :cljsbuild
  25. {:builds {:dev {:source-paths ["src/cljs"]
  26. :figwheel true
  27. :compiler
  28. {:main googlefit-api-test.core
  29. :asset-path "cljs-out/dev"
  30. :output-to "target/public/cljs-out/dev-main.js"
  31. :output-dir "target/public/cljs-out/dev"
  32. :source-map-timestamp true}}}}
  33. :clean-targets ^{:protect false} ["target/public/cljs-out"
  34. :target-path]}})