include .env export .PHONY: clean run run-docker repl tailwind test uberjar clean: rm -rf target run: clj -M:dev -e "(dev-prep!) (go)" -r run-docker: BTCDATA_URL=http://localhost:4101 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