Remove docker-compose.yml and use JDBC_URL from .env for all profiles. Makefile now exports .env variables automatically. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
189 B
Makefile
21 lines
189 B
Makefile
include .env
|
|
export
|
|
|
|
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
|