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.
|
- (defproject googlefit-api-test "0.1.0-SNAPSHOT"
- :description "FIXME: write description"
- :url "http://example.com/FIXME"
- :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
- :url "https://www.eclipse.org/legal/epl-2.0/"}
- :dependencies [[org.clojure/clojure "1.10.0"]
- [org.clojure/clojurescript "1.10.312"]
- [ring "1.7.1"]
- [reagent "0.9.1"]]
- :repl-options {:init-ns googlefit-api-test.core}
- :main googlefit-api-test.core
- :source-paths ["src/clj" "src/cljs"]
- :resource-paths ["target" "resources"]
-
- :aliases
- {"fig" ["trampoline" "run" "-m" "figwheel.main"]
- "build-dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]}
-
- :profiles
- {:dev
- {:dependencies [[com.bhauman/figwheel-main "0.2.3"]
- [com.bhauman/rebel-readline-cljs "0.1.4"]]
- :main googlefit-api-test.core
- :cljsbuild
- {:builds {:dev {:source-paths ["src/cljs"]
- :figwheel true
- :compiler
- {:main googlefit-api-test.core
- :asset-path "cljs-out/dev"
- :output-to "target/public/cljs-out/dev-main.js"
- :output-dir "target/public/cljs-out/dev"
- :source-map-timestamp true}}}}
- :clean-targets ^{:protect false} ["target/public/cljs-out"
- :target-path]}})
|