@@ -145,20 +145,20 @@ How to run common tasks for Clojure development.
145
145
* Project aliases should be added to the individual project ` deps.edn ` file (or may be part of a template).
146
146
* User/Project alias can be defined in both user and project ` deps.edn ` files (add to project ` deps.edn ` for Continuous Integration)
147
147
148
- | Task | Command | Configuration |
149
- | ----------------------------------------------------| -----------------------------------------------------------------| ---------------|
150
- | Create project (clojure exec) | ` clojure -T:project/new :template app :name practicalli/my-app ` | Practicalli |
151
- | Run REPL (rebel readline with nrepl server) | ` clojure -M:repl/rebel ` | Practicalli |
152
- | Run ClojureScript REPL with nREPL (editor support) | ` clojure -M:repl/cljs ` | Practicalli |
153
- | Download dependencies | ` clojure -P ` (followed by optional aliases) | Built-in |
154
- | Find libraries (Clojars & Maven Central) | ` clojure -M:search/libraries qualified-lib rary-name(s) ` | Practicalli |
155
- | Find available versions of a library | ` clojure -X:deps find-versions :lib domain/library-name ` | Built-in |
156
- | Resolve git coord tags to shas and update deps.edn | ` clojure -X:deps git-resolve-tags git-coord-tag ` | Built-in |
157
- | Generate image of project dependency graph | ` clojure -T:project/graph-deps ` | Practicalli |
158
- | Check library dependencies for newer versions | ` clojure -T:search/outdated ` | Practicalli |
159
- | Run tests / watch for changes | ` clojure -X:test/run ` / ` clojure -X:test/watch ` | Practicalli |
160
- | Run the project (clojure.main) | ` clojure -M -m domain.main-namespace ` | Built-in |
161
- | Deploy library locally (~ /.m2/repository) | ` clojure -X:deps mvn-install :jar '"project.jar"' ` | Built-in |
148
+ | Task | Command | Configuration |
149
+ | ----------------------------------------------------| ----------------------------------------------------------------------------------------- | ---------------|
150
+ | Create project (clojure exec) | ` clojure -T:project/create :template practicalli/appplication :name practicalli/my-app ` | Practicalli |
151
+ | Run REPL (rebel readline with nrepl server) | ` clojure -M:repl/rebel ` | Practicalli |
152
+ | Run ClojureScript REPL with nREPL (editor support) | ` clojure -M:repl/cljs ` | Practicalli |
153
+ | Download dependencies | ` clojure -P ` (followed by optional aliases) | Built-in |
154
+ | Find libraries (Clojars & Maven Central) | ` clojure -M:search/libraries qualified-lib rary-name(s) ` | Practicalli |
155
+ | Find available versions of a library | ` clojure -X:deps find-versions :lib domain/library-name ` | Built-in |
156
+ | Resolve git coord tags to shas and update deps.edn | ` clojure -X:deps git-resolve-tags git-coord-tag ` | Built-in |
157
+ | Generate image of project dependency graph | ` clojure -T:project/graph-deps ` | Practicalli |
158
+ | Check library dependencies for newer versions | ` clojure -T:search/outdated ` | Practicalli |
159
+ | Run tests / watch for changes | ` clojure -X:test/run ` / ` clojure -X:test/watch ` | Practicalli |
160
+ | Run the project (clojure.main) | ` clojure -M -m domain.main-namespace ` | Built-in |
161
+ | Deploy library locally (~ /.m2/repository) | ` clojure -X:deps mvn-install :jar '"project.jar"' ` | Built-in |
162
162
163
163
164
164
## REPL terminal UI
0 commit comments