https://github.com/bobbicodes/lfnw
Live code for LinuxFest Northwest 2018
https://github.com/bobbicodes/lfnw
Last synced: about 1 year ago
JSON representation
Live code for LinuxFest Northwest 2018
- Host: GitHub
- URL: https://github.com/bobbicodes/lfnw
- Owner: bobbicodes
- Created: 2018-04-21T01:36:41.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-27T01:02:44.000Z (about 8 years ago)
- Last Synced: 2025-01-31T06:44:29.701Z (over 1 year ago)
- Language: Shell
- Size: 14.7 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lfnw
Live code for LinuxFest Northwest 2018
## Install Clojure CLI Tools. More info: https://clojure.org/guides/getting_started
curl -O https://download.clojure.org/install/linux-install-1.9.0.375.sh
chmod +x linux-install-1.9.0.375.sh
sudo ./linux-install-1.9.0.375.sh
## Try the rebel readline lib
https://github.com/bhauman/rebel-readline
clojure -Sdeps "{:deps {com.bhauman/rebel-readline {:mvn/version \"0.1.2\"}}}" -m rebel-readline.main
you can specify an alias in your $HOME/.clojure/deps.edn
{
...
:aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.2"}}
:main-opts ["-m" "rebel-readline.main"]}}
}
And then run with a simpler:
$ clojure -A:rebel