Skip to content

Commit 13e6689

Browse files
committed
chore: repl from makefile
1 parent e51f33f commit 13e6689

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ COMPILE_OPTS := \
2323
-H:Name=aidbox-sdk
2424
compile-native-image: generate-reflect-config
2525
native-image -jar $(PATH_TO_JAR) $(COMPILE_OPTS) $(image_name)
26+
27+
repl:
28+
clj -Mtest:nrepl

deps.edn

+9
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@
1010
{:dev {:extra-paths ["dev" "test"]
1111
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}}}
1212

13+
:nrepl
14+
{:extra-paths ["dev"]
15+
:extra-deps {cider/cider-nrepl {:mvn/version "LATEST"}}
16+
17+
:main-opts ["-m" "nrepl.cmdline"
18+
"-b" "0.0.0.0"
19+
"--middleware"
20+
"[cider.nrepl/cider-middleware]"]}
21+
1322
:test {:extra-paths ["test"]
1423
:exec-fn kaocha.runner/exec-fn
1524
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}

0 commit comments

Comments
 (0)