clojure Boot profile
Last active
March 25, 2018 05:40
-
-
Save azizzaeny/48c3c0c2216b461912591cfebb9b0b9a to your computer and use it in GitHub Desktop.
boot profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* | |
/* | |
!.gitignore | |
!profile.boot | |
!boot.properties | |
!Readme.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://boot-clj.com | |
#Mon Jan 29 12:13:11 WIB 2018 | |
BOOT_EMIT_TARGET=no | |
BOOT_CLOJURE_NAME=org.clojure/clojure | |
BOOT_CLOJURE_VERSION=1.9.0 | |
BOOT_VERSION=2.7.2 | |
# BOOT_JVM_OPTIONS="-Dhttps.proxyHost=192.168.43.1:1081" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'boot.repl) | |
(deftask js [] | |
(swap! boot.repl/*default-dependencies* | |
concat '[[com.cemerick/piggieback "0.2.1"] | |
[org.clojure/clojurescript "1.9.908"]]) | |
(swap! boot.repl/*default-middleware* | |
conj 'cemerick.piggieback/wrap-cljs-repl)) | |
(deftask cider [] | |
(reset! boot.repl/*default-dependencies* | |
'[[org.clojure/tools.nrepl "0.2.12"] | |
[cider/cider-nrepl "0.16.0"]]) | |
;; [refactor-nrepl "2.2.0"]]) | |
(reset! boot.repl/*default-middleware* | |
['cider.nrepl/cider-middleware])) | |
;; 'refactor-nrepl.middleware/wrap-refactor]) | |
(deftask lt [] | |
(swap! boot.repl/*default-dependencies* | |
concat '[[lein-light-nrepl "0.3.3"] | |
[lein-light-nrepl-instarepl "0.3.1"]]) | |
(swap! boot.repl/*default-middleware* | |
conj 'lighttable.nrepl.handler/lighttable-ops)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment