We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e51f33f commit 13e6689Copy full SHA for 13e6689
Makefile
@@ -23,3 +23,6 @@ COMPILE_OPTS := \
23
-H:Name=aidbox-sdk
24
compile-native-image: generate-reflect-config
25
native-image -jar $(PATH_TO_JAR) $(COMPILE_OPTS) $(image_name)
26
+
27
+repl:
28
+ clj -Mtest:nrepl
deps.edn
@@ -10,6 +10,15 @@
10
{:dev {:extra-paths ["dev" "test"]
11
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}}}
12
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
22
:test {:extra-paths ["test"]
:exec-fn kaocha.runner/exec-fn
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}
0 commit comments