Created
July 28, 2013 06:22
-
-
Save tf0054/6097632 to your computer and use it in GitHub Desktop.
Clojure training with nREPL.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to connect to headless nrepl server with leiningen | |
| # | |
| #export HTTP_CLIENT="wget --no-check-certificate -O" | |
| export LEIN_REPL_PORT=35000 | |
| export LEIN_REPL_HOST=127.0.0.1 | |
| export LEIN_JVM_OPTS=-Duser.home=$HOME | |
| lein repl :connect $LEIN_REPL_HOST:$LEIN_REPL_PORT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to start nrepl server with leiningen | |
| # | |
| #export HTTP_CLIENT="wget --no-check-certificate -O" | |
| export LEIN_REPL_PORT=35000 | |
| export LEIN_REPL_HOST=127.0.0.1 | |
| export LEIN_JVM_OPTS=-Duser.home=$HOME | |
| lein repl :headless > $HOME/clojure/repl.log 2>&1 & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment