-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
awb99
committed
Oct 25, 2024
1 parent
5dbdc1f
commit 7a4c533
Showing
13 changed files
with
107 additions
and
98 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{:modular (modular.system/modular-env) | ||
;:secrets #include "secrets.edn" ;; externalised and usually "mounted" as a docker/kubernetes secret | ||
:components | ||
{:config {:start (modular.config/load-config! (:config #ref [:modular]))} | ||
|
||
:exts {:start (extension/discover)} | ||
|
||
:webly {:start (webly.app.app/start-webly | ||
(clip/ref :exts) | ||
(deref (clip/ref :config)) | ||
(:profile #ref [:modular])) | ||
:stop (webly.app.app/stop-webly this)}}} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
{:name "demo" | ||
:cljs-routes {"" demo.page.options/page-options | ||
"controls" demo.page.controls/page-controls | ||
"trateg" demo.page.trateg/page-trateg} | ||
:sci-cljs-ns [demo.page.options | ||
demo.page.controls | ||
demo.page.trateg] | ||
|
||
|
||
} | ||
{:name "demo-app" | ||
:lazy true | ||
:depends-on #{;:options | ||
} | ||
:cljs-namespace [demo.page.core | ||
demo.page.controls | ||
demo.page.quanta] | ||
:cljs-ns-bindings {'demo.page.core {'page demo.page.core/page} | ||
'demo.page.controls {'page demo.page.controls/page} | ||
'demo.page.quanta {'page demo.page.quanta/page}} | ||
:cljs-routes {"" demo.page.core/page | ||
"controls" demo.page.controls/page | ||
"quanta" demo.page.quanta/page}} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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