Initial project setup: Clojure Kit web app for BTC price tracking

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>
This commit is contained in:
2026-02-17 14:50:42 +01:00
co-authored by Claude Opus 4.6
commit f7b571f670
38 changed files with 1756 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
.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