Skip to content

Commit

Permalink
bug fix; add deps to README
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Mar 31, 2023
1 parent 799b492 commit 9e52ad1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ _Since it is my personal file, it may make assumptions about my own environment.

With that caveat out of the way, here is some basic documentation about my tools and aliases (there are additional examples in the comments in the `deps.edn` file itself). _Note: I have recently cleaned this file up and removed a lot of aliases I no longer use!_

TL;DR: add the following dependency and then start a REPL with `clj -M:dev/repl` (optionally with other aliases to bring in more tooling):

```clojure
:aliases
{:dev/repl
{io.github.seancorfield/dot-clojure
{:git/tag "v1.0.0"
:git/sha "799b492"}}}
```

## Basic Tools

These are installed via `clojure -Ttools install ...` and usable via `clojure -T` with the tool name.
Expand Down
5 changes: 3 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@
;; - clojure -M:nrepl:dev/repl
;; - clojure -M:fig:build:dev/repl
:dev/repl {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:extra-deps [io.github.seancorfield/dot-clojure
{:git/sha "06fa9283f12754a541a8f1e1ef29bf86a1fd50f5"}]
:extra-deps {io.github.seancorfield/dot-clojure
{:git/tag "v1.0.0"
:git/sha "799b492"}}
:main-opts ["-e" "((requiring-resolve 'org.corfield.dev.repl/start-repl))"]}
;; - in case you need precompiled code on your classpath:
:classes {:extra-paths ["classes"]}
Expand Down

0 comments on commit 9e52ad1

Please sign in to comment.