From 15639af98d15280d87a85af548650359660cc234 Mon Sep 17 00:00:00 2001 From: Dustin Getz Date: Wed, 14 Feb 2024 08:58:01 -0500 Subject: [PATCH] readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b7bb07d..ee65958 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,8 @@ This repo is structured to allow multiple "fiddles" (little apps) to run simulta * **prod**: the [prod entrypoint](src-prod/prod.cljc) runs only one fiddle at a time, with an isolated classpath. Prod has a mandatory [build](src-build/build.clj), which bakes the Electric application client program. At compile time, both the electric user application version number (derived from git) and the fiddle entrypoint namespace are known statically, and built into both the client assets and also the server asset `resources/electric-manifest.edn`. At runtime, the prod entrypoint uses the reader trick to lookup the name of the entrypoint to run. +This is all done in a rather tiny amount of LOC, so we feel it is reasonable to expect you to understand it. + For a minimalist starter example, see https://github.com/hyperfiddle/electric-starter-app which is able to hardcode the electric user application entrypoint functions and thereby eliminate some of this dynamism. ## Quick Start