Load .env vars via Makefile, use #env JDBC_URL for all profiles in system.edn, switch ig/prep to ig/expand, and add missing namespace requires in core.clj to match elprice project conventions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
235 B
Makefile
23 lines
235 B
Makefile
include .env
|
|
export
|
|
|
|
.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
|