Split from btcprice monolith. Owns DB, migrations, Binance WebSocket, Kraken OHLC pollers, and exposes a JSON API with SSE price stream. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20 lines
215 B
Makefile
20 lines
215 B
Makefile
include .env
|
|
export
|
|
|
|
.PHONY: clean run repl test uberjar
|
|
|
|
clean:
|
|
rm -rf target
|
|
|
|
run:
|
|
clj -M:dev -e "(dev-prep!) (go)" -r
|
|
|
|
repl:
|
|
clj -M:dev:nrepl
|
|
|
|
test:
|
|
clj -M:test
|
|
|
|
uberjar:
|
|
clj -T:build all
|