Skip to content

Commit a23ce32

Browse files
committed
rollback nrepl port
1 parent 488d97c commit a23ce32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Run with `bb integration-test`, it will use your `eca` binary project root to sp
5858
There are several ways of finding and fixing a bug or implementing a new feature:
5959

6060
- Create a test for your bug/feature, then implement the code following the test (TDD).
61-
- Build a local `eca` JVM embedded binary using `bb debug-cli` (requires `babashka`), and test it manually in your client pointing to it. After started, you can connect to the nrepl port `9990`, do you changes, evaluate and it will be affected on the running eca.
61+
- Build a local `eca` JVM embedded binary using `bb debug-cli` (requires `babashka`), and test it manually in your client pointing to it. After started, you can connect to the nrepl port mentioned in eca stderr, do you changes, evaluate and it will be affected on the running eca.
6262
- Using a debug binary you can connect to the REPL, make changes to the running eca process (really handy).
6363

6464
## Supporting a new editor

src/eca/nrepl.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
(def cider-nrepl-handler (dynaload 'cider.nrepl/cider-nrepl-handler))
1111

1212
(defn ^:private repl-port []
13-
(:port (start-server :handler cider-nrepl-handler :port 9990)))
13+
(:port (start-server :handler cider-nrepl-handler)))
1414

1515
(defn setup-nrepl []
1616
(try

0 commit comments

Comments
 (0)