Implement inline resources
This commit is contained in:
parent
8bcea1ef8f
commit
dda4ecb1fb
3 changed files with 4 additions and 8 deletions
|
@ -5,7 +5,7 @@
|
|||
:url "https://www.apache.org/licenses/LICENSE-2.0.html"}
|
||||
:dependencies [[org.clojure/clojure "1.11.1"]
|
||||
[org.clojure/tools.reader "1.3.6"]
|
||||
[org.domaindrivenarchitecture/c4k-common-clj "6.0.1"]]
|
||||
[org.domaindrivenarchitecture/c4k-common-clj "6.1.0"]]
|
||||
:target-path "target/%s/"
|
||||
:source-paths ["src/main/cljc"
|
||||
"src/main/clj"]
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"src/test/cljc"
|
||||
"src/test/cljs"
|
||||
"src/test/resources"]
|
||||
:dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "6.0.1"]
|
||||
:dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "6.1.0"]
|
||||
[hickory "0.7.1"]]
|
||||
:builds {:frontend {:target :browser
|
||||
:modules {:main {:init-fn dda.c4k-keycloak.browser/init}}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
(ns dda.c4k-keycloak.keycloak
|
||||
(:require
|
||||
[clojure.spec.alpha :as s]
|
||||
#?(:cljs [shadow.resource :as rc])
|
||||
#?(:cljs [dda.c4k-common.macros :refer-macros [inline-resources]])
|
||||
#?(:clj [orchestra.core :refer [defn-spec]]
|
||||
:cljs [orchestra.core :refer-macros [defn-spec]])
|
||||
[dda.c4k-common.yaml :as yaml]
|
||||
|
@ -23,11 +23,7 @@
|
|||
|
||||
#?(:cljs
|
||||
(defmethod yaml/load-resource :keycloak [resource-name]
|
||||
(case resource-name
|
||||
"keycloak/deployment.yaml" (rc/inline "keycloak/deployment.yaml")
|
||||
"keycloak/secret.yaml" (rc/inline "keycloak/secret.yaml")
|
||||
"keycloak/service.yaml" (rc/inline "keycloak/service.yaml")
|
||||
(throw (js/Error. "Undefined Resource!")))))
|
||||
(get (inline-resources "keycloak") resource-name)))
|
||||
|
||||
(defn-spec generate-ingress cp/map-or-seq?
|
||||
[config config?]
|
||||
|
|
Loading…
Reference in a new issue