Skip to content

Commit 96ac074

Browse files
readme: updatecommon tasks with :project/create
1 parent f76a6b1 commit 96ac074

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -145,20 +145,20 @@ How to run common tasks for Clojure development.
145145
* Project aliases should be added to the individual project `deps.edn` file (or may be part of a template).
146146
* User/Project alias can be defined in both user and project `deps.edn` files (add to project `deps.edn` for Continuous Integration)
147147

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 |
162162

163163

164164
## REPL terminal UI

0 commit comments

Comments
 (0)