This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-06-22
Channels
- # admin-announcements (9)
- # beginners (18)
- # boot (20)
- # cider (32)
- # clojure (108)
- # clojure-berlin (5)
- # clojure-czech (3)
- # clojure-italy (5)
- # clojure-japan (70)
- # clojure-russia (37)
- # clojure-sg (2)
- # clojure-spain (3)
- # clojurescript (89)
- # core-async (5)
- # core-typed (12)
- # datomic (11)
- # dunaj (2)
- # editors (30)
- # euroclojure (33)
- # events (1)
- # jobs (10)
- # ldnclj (18)
- # off-topic (45)
- # reagent (12)
https://github.com/adzerk-oss/boot-cljs-repl/pull/18 Is there any ETA on when this pull request could be merged? Kinda miss my cljs-repl š
I know I could look this upā¦but Iām feeling lazy: anyone know if thereās a way to insert a user prompt in a boot task?
i.e. something like (deftask dangerous-stuff [] (comp (confirm āAre you sure you want to foobaz the quxbar?ā) (foobaz-the-quxbar)))
@jballanc: there is something like that in bootlaces, https://github.com/adzerk-oss/bootlaces/blob/master/src/adzerk/bootlaces.clj#L42
@alandipert: cool! thatās at least a good starting point
@jballanc: np! read-line
is the key
also (.readPassword (System/console))
is handy
oh, right
@jballanc: maybe you want with-post-wrap
?
itās just strange because using with-pre-wrap
the REPL client would start, but then immediately terminate complaining that stdin is no longer available
oh, that is weird - never seen that one
Iām looking into https://github.com/boot-clj/boot/wiki/S3-Repositories. Never use s3-wagon
before. Is it possible to deploy to s3 using boot?
@podviaznikov: it is indeed
@podviaznikov: after you add the wagon and name the repo you can use the push
task
sounds good, going to try. thanks!