Initial commit

This commit is contained in:
arne 2025-11-08 10:03:10 +01:00
commit cef1c0aca8
9 changed files with 439 additions and 0 deletions

21
shadow-cljs.edn Normal file
View file

@ -0,0 +1,21 @@
;; shadow-cljs configuration
{:source-paths
["src/main"
"src/dev"
"src/test"]
:dependencies
[[datascript/datascript "1.7.8"] ; unused
[reagent/reagent "2.0.1"]
[io.github.tonsky/fast-edn "1.1.3"]
[binaryage/devtools "1.0.7"] ; loaded automatically, see https://shadow-cljs.github.io/docs/UsersGuide.html#_preloads
]
:dev-http {8080 "public"}
:builds
{:frontend
{:target :browser
:modules {:main {:init-fn computersandblues.lodestone.app/init}}}}}