From 2155075ba08c0e07571d48c4fc4acf1a3d3c60cf Mon Sep 17 00:00:00 2001 From: Jan Krebs Date: Thu, 5 Aug 2021 11:53:06 +0200 Subject: [PATCH] Add index.html to public folder and adjust shadow-cljs.edn builds --- public/index.html | 69 +++++++++++++++++++++++++++++++++++++++++++++++ shadow-cljs.edn | 8 ++++-- 2 files changed, 75 insertions(+), 2 deletions(-) create mode 100644 public/index.html diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..feadcff --- /dev/null +++ b/public/index.html @@ -0,0 +1,69 @@ + + + + + + c4k-keycloak + + + + + + +
+
+ + +
+

+      
+ + +
+

+      
+ + +
+

+      
+ + +
+

+      
+
+ + +
+

+      
+

+ + +
+

+      
+

+ +


+
+ + +
+ +
+ + + + \ No newline at end of file diff --git a/shadow-cljs.edn b/shadow-cljs.edn index 0135364..6662142 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -5,7 +5,11 @@ "src/test/cljs" "src/test/resources"] :dependencies [[org.domaindrivenarchitecture/c4k-common-cljs "0.2.8"]] - :builds {:test {:target :node-test + :builds {:frontend {:target :browser + :modules {:main {:init-fn dda.c4k-jira.browser/init}} + :release {} + :compiler-options {:optimizations :advanced}} + :test {:target :node-test :output-to "target/node-tests.js" :autorun true - :repl-pprint true}}} + :repl-pprint true}}} \ No newline at end of file