The project's Github Pages site hosts an interactive Clerk notebook demonstrating the library's use.
Start a Clojure process however you like, and run (user/serve!)
to run the
Clerk server. This command should open up localhost:7777
.
Alternatively, run
bb clerk-watch
To test the static build locally:
bb publish-local
This will generate the static site in public/build
, start a development http
server and open up a browser window (http://127.0.0.1:8080/) with the production
build of the documentation notebook.
To build and release to Github Pages:
bb release-gh-pages
This will ship the site to https://emmy.mentat.org.
The template for the project's pom.xml
lives at
template/pom.xml
.
To create a new release:
- Update the version in resources/EMMY_VERSION
- Make a new Github
Release with tag
v<the-new-version>
.
Submitting the release will create the new tag and trigger the following command:
bb release
The new release will appear on Clojars.
Code is linted with clj-kondo
:
bb lint