usecases
You have two options:
Please refer to the goldly bundel readme for setup.
This configures goldly with your set of ui-renderers.
You have to include the goldly and ui-renderer dependencies, and then add the namespace of the ui-renderer to goldly/extensions. This allows goldly to add the ui extensions to the javascript bundle.
This example adds gorilla-ui to goldly:
for tools.deps Add this alias to your deps.edn:
:goldly
{:extra-deps {org.pinkgorilla/goldly {:mvn/version "0.2.39"}
org.pinkgorilla/gorilla-ui {:mvn/version "0.3.21"}}
:exec-fn goldly-server.app/goldly-server-run!
:exec-args {:profile "watch"
:config {:goldly {:extensions [[pinkgorilla.ui.goldly]
]}}}}
for leiningen Add the alias to project.clj
{:alias
"goldly"
["with-profile" "+goldly" "run" "-m" "goldly-server.app" "watch" "goldly-gorillaui.edn"]}
Add a goldly-gorillaui.edn:
{:goldly {:extensions [[pinkgorilla.ui.goldly]]}}
run goldly without ui-extensions
lein goldly ; runs a webserver on port 8000.
http://localhost:8000
running systems
and then snippet registry
The source code of the registry systems is in src/systems
.
The snippets are in resources/snippets/
The snippets are primitive, but demonstrate certain features of goldly:
run goldly with ui-extensions
lein goldly-bundel
This is the same config as in goldly-bundel, but we do not auto-generate a javascript bundel.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close