nha

Results 10 comments of nha

Alright I got it working, but I'm not sure why I had to nest those `ssh` and `run` macros. Also, I expected the tasks to be able to return values...

Is there an example of this as of today ? Some guidelines to get started integrating pedestal and liberator ?

looks similar to https://github.com/juxt/yada/issues/178

The use case is close the one described in the README @SevereOverfl0w : https://github.com/juxt/aero#hide-passwords-in-local-private-files If you take that example and move `:aws-secret-access-key` to a different file, say `aws.edn`: ``` repro.clj...

Yes, there are several options that work right now: - #include the shared config in every file referencing it as you suggest (won't work if the secret is in the...

I believe I have been using something similar in the past where configuration values could be functions (or indeed protocols), with the following reader: ``` (defn- require-resolve ([sym] (if-let [ns...

So maybe steps towards boot compatibility would be: - exposing a function that takes dependencies in a format vizdeps likes and returns an image file (or takes a path/file as...

Yada ( https://github.com/juxt/yada ), which sits above Aleph, has support for serving directory etc. and is now past 1.0 so it might be worth investigating.

For those reading this, I use the following function with the REST api: ``` (require '[clojurewerkz.elastisch.rest :as esr]) (defn es-info [conn] (esr/get conn (:uri conn))) ```

@wilkerlucio there is an old PR from @Frozenlock that you may want to have a look at: https://github.com/ptaoussanis/sente/pull/275