Kit framework with Undertow, Reitit routing, Hiccup + HTMX templating, Tailwind CSS v4, PostgreSQL (empty database), and mobile-first index page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
214 B
Makefile
20 lines
214 B
Makefile
.PHONY: clean run repl tailwind test uberjar
|
|
|
|
clean:
|
|
rm -rf target
|
|
|
|
run:
|
|
clj -M:dev -e "(dev-prep!) (go)" -r
|
|
|
|
repl:
|
|
clj -M:dev:nrepl
|
|
|
|
tailwind:
|
|
npm run css:watch
|
|
|
|
test:
|
|
clj -M:test
|
|
|
|
uberjar:
|
|
clj -T:build all
|